diff options
Diffstat (limited to 'users/grfn/system')
-rw-r--r-- | users/grfn/system/home/modules/i3.nix | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/users/grfn/system/home/modules/i3.nix b/users/grfn/system/home/modules/i3.nix index c56c9d556ba8..df0859b46aef 100644 --- a/users/grfn/system/home/modules/i3.nix +++ b/users/grfn/system/home/modules/i3.nix @@ -166,6 +166,10 @@ in { # Notifications "${mod}+Shift+n" = "exec killall -SIGUSR1 .dunst-wrapped"; "${mod}+n" = "exec killall -SIGUSR2 .dunst-wrapped"; + "Control+space" = "exec ${pkgs.dunst}/bin/dunstctl close"; + "Control+Shift+space" = "exec ${pkgs.dunst}/bin/dunstctl close-all"; + "Control+grave" = "exec ${pkgs.dunst}/bin/dunstctl history-pop"; + "Control+Shift+period" = "exec ${pkgs.dunst}/bin/dunstctl action"; })]); fonts = [ decorationFont ]; @@ -333,13 +337,6 @@ in { color = "#aaaaaa"; }; - shortcuts = { - close = "ctrl+space"; - close_all = "ctrl+shift+space"; - history = "ctrl+grave"; - context = "ctrl+shift+period"; - }; - urgency_low = { background = base03; foreground = base3; |