From 0b9a0dcdfcd47302d0331a6fbb11fa60ec6ccc51 Mon Sep 17 00:00:00 2001 From: "E. Almqvist" Date: Sun, 16 Oct 2022 02:23:20 +0200 Subject: [PATCH] Lockscreen --- xmonad/.xmonad/xmonad.hs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/xmonad/.xmonad/xmonad.hs b/xmonad/.xmonad/xmonad.hs index 5b14060..09b4015 100644 --- a/xmonad/.xmonad/xmonad.hs +++ b/xmonad/.xmonad/xmonad.hs @@ -81,8 +81,8 @@ myKeys conf@(XConfig {XMonad.modMask = modm}) = , ((modm, xK_b), spawn "firefox") -- screenshot , ((modm, xK_Print), spawn "flameshot gui") - -- launch gmrun - , ((modm .|. shiftMask, xK_p), spawn "gmrun") + -- lockscreen + , ((modm .|. shiftMask, xK_l), spawn "betterlockscreen --lock") -- close focused window , ((modm .|. shiftMask, xK_q), kill) -- Rotate through the available layout algorithms @@ -177,7 +177,7 @@ myLayout = avoidStruts $ tiled ||| Mirror tiled ||| Full -- The default number of windows in the master pane nmaster = 1 -- Default proportion of screen occupied by master pane - ratio = 3 / 4 + ratio = 29/50 -- Percent of screen to increment by when resizing panes delta = 3 / 100