diff options
author | Thanos Apollo <[email protected]> | 2023-04-08 06:57:43 +0300 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2023-04-08 06:57:43 +0300 |
commit | 2faebfea724eabccafac7eb2d7bafeba6a93c884 (patch) | |
tree | e898dcfddd298ea92e4b6010f7def506e2172a5b /.config/hypr | |
parent | dbdabf1c2d3a3188b0805529e47373275cb28362 (diff) |
hypr: Change to master, add mfact and new keys for movewindow
Diffstat (limited to '.config/hypr')
-rw-r--r-- | .config/hypr/hyprland.conf | 19 |
1 files changed, 13 insertions, 6 deletions
diff --git a/.config/hypr/hyprland.conf b/.config/hypr/hyprland.conf index 4c5b119..d60a093 100644 --- a/.config/hypr/hyprland.conf +++ b/.config/hypr/hyprland.conf @@ -37,7 +37,7 @@ general { border_size = 2 col.active_border = rgba(33ccffee) rgba(00ff99ee) 45deg col.inactive_border = rgba(595959aa) - layout = dwindle + layout = master } decoration { @@ -77,7 +77,8 @@ dwindle { master { # See https://wiki.hyprland.org/Configuring/Master-Layout/ for more - new_is_master = true + new_is_master = false + mfact = 0.53 } gestures { @@ -113,14 +114,20 @@ bind = $mainMod, Tab, exec, rofi -show drun bind = $mainMod, R , exec, tessen --dmenu=rofi bind = $mainMod, V, togglefloating, bind = $mainMod, J, togglesplit, # dwindle -bind = , F12, exec, grim -g "$(slurp)" +bind = $mainMod, F12, exec, grim -g "$(slurp)" -bind = $mainMod SHIFT, F, fullscreen +bind = , F11, fullscreen # Move focus with mainMod + arrow keys bind = $mainMod, B, movefocus, l bind = $mainMod, F, movefocus, r -bind = $mainMod, N, movefocus, u -bind = $mainMod, P, movefocus, d +bind = $mainMod, N, movefocus, d +bind = $mainMod, P, movefocus, u + +bind = $mainMod SHIFT, P, movewindow, u +bind = $mainMod SHIFT, N, movewindow, d +bind = $mainMod SHIFT, F, movewindow, r +bind = $mainMod SHIFT, B, movewindow, l + # Switch workspaces with mainMod + [0-9] bind = $mainMod, 1, workspace, 1 |