From b5ee64410d00e2cb43edcb1ad269b05c3e33e5ad Mon Sep 17 00:00:00 2001 From: Mitchell Pleune Date: Sat, 27 Feb 2016 16:36:13 -0500 Subject: [PATCH] x11 service: bspwm limit sxhkd freqency add '-f 100' as an argument to sxhkd to keep it from flooding bspwm add SXHKD_SHELL=/bin/sh to help default to a faster shell than what may be set in $SHELL (example: with zsh) --- nixos/modules/services/x11/window-managers/bspwm.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/services/x11/window-managers/bspwm.nix b/nixos/modules/services/x11/window-managers/bspwm.nix index 8b4e91d25aa4..1edf6ba4deb9 100644 --- a/nixos/modules/services/x11/window-managers/bspwm.nix +++ b/nixos/modules/services/x11/window-managers/bspwm.nix @@ -15,7 +15,7 @@ in services.xserver.windowManager.session = singleton { name = "bspwm"; start = " - ${pkgs.sxhkd}/bin/sxhkd & + SXHKD_SHELL=/bin/sh ${pkgs.sxhkd}/bin/sxhkd -f 100 & ${pkgs.bspwm}/bin/bspwm "; };