From 3dc2f2d3892849f253a6d08f3d83b5d2f5b385b2 Mon Sep 17 00:00:00 2001 From: Daniel Borchmann Date: Sun, 7 Feb 2021 11:54:38 +0100 Subject: [PATCH] Use XFCE4 screen lock mechanism When using xtrlock and xflock4 simultaneously, as is done when using lightdm, this may cause trouble when unlocking: not that unlocking has to be done twice, it also keeps the keyboard locked and one has to switch workspaces with the mouse to unlock it again. --- xmonad/xmonad.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xmonad/xmonad.hs b/xmonad/xmonad.hs index 5b07ddf..627d73f 100644 --- a/xmonad/xmonad.hs +++ b/xmonad/xmonad.hs @@ -66,7 +66,7 @@ keyMap c = mkKeymap c $ , ("M-" , sendMessage NextLayout) , ("M-n" , refresh) , ("M-p" , spawn "dmenu_run") - , ("M-S-x" , spawn "xtrlock") + , ("M-S-x" , spawn "xflock4") , ("M-e" , spawn "emacsclient -a \"\" -c") , ("M-k" , windows W.focusUp) , ("M-j" , windows W.focusDown)