diff options
author | Gregor Kleen <gkleen@yggdrasil.li> | 2015-07-04 00:04:22 +0200 |
---|---|---|
committer | Gregor Kleen <gkleen@yggdrasil.li> | 2015-07-04 00:04:22 +0200 |
commit | 5419ca084df03042aaf4866d5b3b370dce75036f (patch) | |
tree | 514a8652fac67d00989864fc7296cfcbc342070d | |
parent | e10c81f8898c31bfbd2674831e7e876b08a41bc7 (diff) | |
download | dotfiles-5419ca084df03042aaf4866d5b3b370dce75036f.tar dotfiles-5419ca084df03042aaf4866d5b3b370dce75036f.tar.gz dotfiles-5419ca084df03042aaf4866d5b3b370dce75036f.tar.bz2 dotfiles-5419ca084df03042aaf4866d5b3b370dce75036f.tar.xz dotfiles-5419ca084df03042aaf4866d5b3b370dce75036f.zip |
bugfixes
-rw-r--r-- | .xmonad/xmonad.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.xmonad/xmonad.hs b/.xmonad/xmonad.hs index 87282aa..792bced 100644 --- a/.xmonad/xmonad.hs +++ b/.xmonad/xmonad.hs | |||
@@ -95,7 +95,7 @@ main = do | |||
95 | , layoutHook = smartBorders $ avoidStruts layout' | 95 | , layoutHook = smartBorders $ avoidStruts layout' |
96 | , logHook = dynamicLogWithPP xmobarPP' | 96 | , logHook = dynamicLogWithPP xmobarPP' |
97 | , modMask = mod4Mask | 97 | , modMask = mod4Mask |
98 | , keys = hKeysMod host conf $ myKeys' conf | 98 | , keys = \conf -> hKeysMod host conf $ myKeys' conf |
99 | , workspaces = take (length numKeys) $ map (hWsp host) [1..] | 99 | , workspaces = take (length numKeys) $ map (hWsp host) [1..] |
100 | , startupHook = assimilateKeychain >> (sequence autostart) >> (setDefaultCursor xC_left_ptr) >> banishScreen LowerRight >> return () | 100 | , startupHook = assimilateKeychain >> (sequence autostart) >> (setDefaultCursor xC_left_ptr) >> banishScreen LowerRight >> return () |
101 | , normalBorderColor = "#202020" | 101 | , normalBorderColor = "#202020" |