diff options
| author | Charles Cabergs <me@cacharle.xyz> | 2022-08-15 07:16:02 +0200 |
|---|---|---|
| committer | Charles Cabergs <me@cacharle.xyz> | 2022-08-15 07:16:02 +0200 |
| commit | f1183f6d47892201f364a67c6ced3cedb3e4d788 (patch) | |
| tree | 483acf9b498d53f1684db82725dd40f7356d786b /config/xmonad | |
| parent | dabec265b3eef63a96e14392e3918fcc3b154585 (diff) | |
| download | dotfiles-f1183f6d47892201f364a67c6ced3cedb3e4d788.tar.gz dotfiles-f1183f6d47892201f364a67c6ced3cedb3e4d788.tar.bz2 dotfiles-f1183f6d47892201f364a67c6ced3cedb3e4d788.zip | |
Removed spawning terminal on XMonad start
Diffstat (limited to 'config/xmonad')
| -rw-r--r-- | config/xmonad/xmonad.hs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/config/xmonad/xmonad.hs b/config/xmonad/xmonad.hs index 3fe2ee8..aa90778 100644 --- a/config/xmonad/xmonad.hs +++ b/config/xmonad/xmonad.hs @@ -36,7 +36,7 @@ main = xmonad $ desktopConfig , borderWidth = 2 , focusFollowsMouse = False -- don't change window based on mouse position (need to click) , workspaces = ["code", "web"] ++ map show [3..9] - , startupHook = startupHook' + -- , startupHook = startupHook' } `additionalKeysP` keys' @@ -73,9 +73,9 @@ keys' = [ ("<XF86AudioLowerVolume>", spawn "pulseaudio-ctl down") , ("M-S-q", confirm "Are you sure you want to shutdown?" $ io (exitWith ExitSuccess)) ] -startupHook' :: X () -startupHook' = do - spawnOnOnce "code" myTerminal +-- startupHook' :: X () +-- startupHook' = do + -- spawnOnOnce "code" myTerminal -- spawnOnOnce "web" "qutebrowser" confirm :: String -> X () -> X () |
