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

View File

@@ -178,6 +178,7 @@ myStartupHook = do
spawnOnce (mySoundPlayer ++ startupSound)
spawn "killall conky" -- kill current conky on each restart
spawn "killall trayer" -- kill current trayer on each restart
spawn "killall polybar" -- adding this in case of switching between xmobar and polybar.
#+END_SRC
#+BEGIN_SRC haskell

View File

@@ -122,7 +122,9 @@ windowCount = gets $ Just . show . length . W.integrate' . W.stack . W.workspace
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.
spawnOnce "lxsession"
spawnOnce "picom"