This commit is contained in:
Sakooooo 2023-07-24 00:35:31 +03:00
parent ef6e9aa6d2
commit a93457cc67
Signed by: sako
GPG key ID: 3FD715D87D7725E0

View file

@ -136,7 +136,7 @@ myKeys conf@(XConfig {XMonad.modMask = modm}) = M.fromList $
, ((modm .|. shiftMask, xK_q ), io exitSuccess) , ((modm .|. shiftMask, xK_q ), io exitSuccess)
-- Restart xmonad -- Restart xmonad
, ((modm , xK_q ), spawn "xmonad --recompile; killall stalonetray; 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) -- Run xmessage with a summary of the default keybindings (useful for beginners)
, ((modm .|. shiftMask, xK_slash ), xmessage help) , ((modm .|. shiftMask, xK_slash ), xmessage help)
@ -256,6 +256,7 @@ myLogHook h = dynamicLogWithPP $ def { ppOutput = hPutStrLn h }
-- By default, do nothing. -- By default, do nothing.
myStartupHook = do myStartupHook = do
spawnOnce "keepassxc" spawnOnce "keepassxc"
spawn "trayer --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. -- Now run xmonad with all the defaults we set up.