diff options
| author | Nathan Reiner <nathan@nathanreiner.xyz> | 2024-10-24 22:09:44 +0200 |
|---|---|---|
| committer | Nathan Reiner <nathan@nathanreiner.xyz> | 2024-10-24 22:09:44 +0200 |
| commit | d02babb482b3189bbafec3e1ed12aa6565b6e377 (patch) | |
| tree | bc9d0a0e2bebe6c118d8d993bf98aa0ca9cb92ff /common/home/hyprland | |
| parent | 13ecfb0a3bf119e996487aa15db50d9778d3a22a (diff) | |
scripts: add loadconfig
Diffstat (limited to 'common/home/hyprland')
| -rw-r--r-- | common/home/hyprland/default.nix | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/common/home/hyprland/default.nix b/common/home/hyprland/default.nix index edffdd6..be5fe0e 100644 --- a/common/home/hyprland/default.nix +++ b/common/home/hyprland/default.nix @@ -14,7 +14,8 @@ "$mod, Escape, exec, hyprlock" "$mod, Space, exec, wofi --show run" "$mod, O, exec, openproject" - "$mod, v, exec, openproject -e nvim" + "$mod, V, exec, openproject -e nvim" + "$mod+Shift, S, exec, loadconfig" "$mod+Shift, Return, exec, alacritty" "$mod+Shift, B, exec, firefox" @@ -132,5 +133,11 @@ swallow_regex = "^(Alacritty)$"; animate_manual_resizes = true; }; + + windowrulev2 = [ + "pin,class:^(Hyprland::WinClass::Floating)$" + "float,class:^(Hyprland::WinClass::Floating)$" + "center,class:^(Hyprland::WinClass::Floating)$" + ]; }; } |