Skip to content

Commit

Permalink
fix spawn once
Browse files Browse the repository at this point in the history
  • Loading branch information
emoney17 committed Mar 26, 2023
1 parent 91c2831 commit 6b85ad8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions xmonad.hs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import XMonad.Hooks.ManageHelpers
import XMonad.Hooks.StatusBar
import XMonad.Hooks.StatusBar.PP

myTerminal = "alacritty"
myTerminal = "st"
myBrowser = "firefox"
myEmacs = "emacsclient -c"
myDmenu = "dmenu_run -fn 'Monospace-11'"
Expand Down Expand Up @@ -98,6 +98,6 @@ myXmobarPP = def

myStartupHook :: X()
myStartupHook = do
spawnOnce "/usr/bin/emacs --daemon"
spawnOnce "picom &"
spawnOnce "sh ~/.fehbg"
spawn "/usr/bin/emacs --daemon"
spawn "picom &"
spawn "sh ~/.fehbg"

0 comments on commit 6b85ad8

Please sign in to comment.