From 1463d0fc8ba3d0679d1e4c829247157ced783c6c Mon Sep 17 00:00:00 2001 From: ISnortPennies Date: Thu, 8 Sep 2022 21:15:13 -0400 Subject: [PATCH] fixed pause keybinds --- home-manager/sxhkd.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/home-manager/sxhkd.nix b/home-manager/sxhkd.nix index b3efe88..4f9c3f4 100644 --- a/home-manager/sxhkd.nix +++ b/home-manager/sxhkd.nix @@ -26,8 +26,8 @@ "super + alt + {h,j,k,l}" = "bspc node -z {left -20 0,bottom 0 20,top 0 -20,right 20 0}"; "super + alt + shift + {h,j,k,l}" ="bspc node -z {right -20 0,top 0 20,bottom 0 -20,left 20 0}"; "super + {Left,Down,Up,Right}" = "bspc node -v {-20 0,0 20,0 -20,20 0}"; - "XF86AudioPlay" = "playerctl play"; - "XF86AudioPause" = "playerctl pause"; + "XF86AudioPlay" = "playerctl play-pause"; + "XF86AudioPause" = "playerctl play-pause"; "XF86AudioNext" = "playerctl next"; "XF86AudioPrev" = "playerctl previous"; "alt + Tab" = "bash ~/.config/rofi/window-switcher/window-switcher.sh";