diff options
| author | Nathan Reiner <nathan@nathanreiner.xyz> | 2024-12-30 10:41:11 +0100 |
|---|---|---|
| committer | Nathan Reiner <nathan@nathanreiner.xyz> | 2024-12-30 10:41:11 +0100 |
| commit | c7db585a46a6d0dfe8fd17bfedbe4f5a8d324b93 (patch) | |
| tree | 835127b742ee83437a8ef3d3199ba70f99680135 /common | |
| parent | 8039abb0e63d72f05bd4de25a10badce8aa66d57 (diff) | |
flake: update
Diffstat (limited to 'common')
| -rw-r--r-- | common/home/hyprland/default.nix | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/common/home/hyprland/default.nix b/common/home/hyprland/default.nix index 9920b7e..d33e8af 100644 --- a/common/home/hyprland/default.nix +++ b/common/home/hyprland/default.nix @@ -32,6 +32,9 @@ "$mod, j, movefocus, d" "$mod, f, fullscreen" + "$mod, Return, layoutmsg, swapwithmaster master" + "$mod, i, layoutmsg, addmaster" + "$mod, d, layoutmsg, removemaster" "$mod+Shift, h, movewindow, l" "$mod+Shift, l, movewindow, r" @@ -87,7 +90,7 @@ general = { gaps_in = 10; gaps_out = 10; - layout = "dwindle"; + layout = "master"; border_size = 3; "col.active_border" = "rgba(b16286ff)"; "col.inactive_border" = "rgba(3c3836ff)"; @@ -120,6 +123,11 @@ preserve_split = true; }; + master = { + new_on_top = true; + new_status = "master"; + }; + input = { kb_options = "caps:escape"; |