diff options
author | Griffin Smith <root@gws.fyi> | 2020-05-04T17·15-0400 |
---|---|---|
committer | Griffin Smith <root@gws.fyi> | 2020-05-04T17·15-0400 |
commit | 976ff9bbd3a9eef8d8051d617ef7099f3e0c6390 (patch) | |
tree | 8e19625160176222f94220aea1b5d4f00dedaa53 /home | |
parent | e2136a9e589d72086536f296b3baae410fa61209 (diff) |
keybinds for enable/disable notifications
Diffstat (limited to 'home')
-rw-r--r-- | home/modules/i3.nix | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/home/modules/i3.nix b/home/modules/i3.nix index eaba0086e401..2176d72811fe 100644 --- a/home/modules/i3.nix +++ b/home/modules/i3.nix @@ -124,6 +124,10 @@ in { "${mod}+Ctrl+t" = "exec ${pkgs.writeShellScript "fix_term.sh" '' xrandr --output eDP-1 --off && ${screenlayout.home} ''}"; + + # Notifications + "${mod}+Shift+n" = "exec killall -SIGUSR1 .dunst-wrapped"; + "${mod}+n" = "exec killall -SIGUSR2 .dunst-wrapped"; }; fonts = [ decorationFont ]; |