From 5b1a90fc832f9b07df42099da9c854b1815fc4a3 Mon Sep 17 00:00:00 2001 From: Sakooooo <78461130+Sakooooo@users.noreply.github.com> Date: Mon, 24 Jul 2023 00:55:40 +0300 Subject: [PATCH] lower --- config/xmonad/xmonad.hs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/xmonad/xmonad.hs b/config/xmonad/xmonad.hs index 161e0a95..62db9e60 100644 --- a/config/xmonad/xmonad.hs +++ b/config/xmonad/xmonad.hs @@ -136,7 +136,7 @@ myKeys conf@(XConfig {XMonad.modMask = modm}) = M.fromList $ , ((modm .|. shiftMask, xK_q ), io exitSuccess) -- Restart xmonad - , ((modm , xK_q ), spawn "xmonad --recompile; killall trayer; killall xmobar; xmonad --restart") + , ((modm , xK_q ), spawn "xmonad --recompile; killall trayer; killall xmobar ; xmonad --restart") -- Run xmessage with a summary of the default keybindings (useful for beginners) , ((modm .|. shiftMask, xK_slash ), xmessage help) @@ -256,7 +256,7 @@ myLogHook h = dynamicLogWithPP $ def { ppOutput = hPutStrLn h } -- By default, do nothing. myStartupHook = do spawnOnce "keepassxc" - spawn "trayer --edge bottom --align right --SetDockType true --tint #000000 --SetPartialStrut true --expand true --transparent true --alpha 0" + spawn "trayer -l --edge bottom --align right --SetDockType true --tint #000000 --SetPartialStrut true --expand true --transparent true --alpha 0" ------------------------------------------------------------------------ -- Now run xmonad with all the defaults we set up.