Nothing to see really

This commit is contained in:
Derek Taylor
2023-03-04 15:02:36 -06:00
parent a285720a26
commit 31acdfe6ed
3 changed files with 7 additions and 2 deletions

View File

@@ -177,7 +177,9 @@ These are commands we want XMonad to execute on startup, such as running a compo
myStartupHook :: X ()
myStartupHook = do
spawnOnce (mySoundPlayer ++ startupSound)
spawn "killall conky" -- kill current conky on each restart
spawn "killall conky" -- kill current conky on each restart
spawn "killall xmobar" -- adding this in case of switching between xmobar and polybar.
spawn "killall trayer" -- adding this in case of switching between xmobar and polybar.
#+END_SRC
#+BEGIN_SRC haskell