diff options
author | Gregor Kleen <gkleen@yggdrasil.li> | 2015-07-04 14:34:57 +0200 |
---|---|---|
committer | Gregor Kleen <gkleen@yggdrasil.li> | 2015-07-04 14:34:57 +0200 |
commit | 8f008a3c52e156e07dd35edd1e69651a6f17c648 (patch) | |
tree | ad8753baf0a85e59c7aa75729b23264573e87b65 | |
parent | 903cb3786747f04e01a6a5f35a6bd9f10a3ff14c (diff) | |
download | dotfiles-8f008a3c52e156e07dd35edd1e69651a6f17c648.tar dotfiles-8f008a3c52e156e07dd35edd1e69651a6f17c648.tar.gz dotfiles-8f008a3c52e156e07dd35edd1e69651a6f17c648.tar.bz2 dotfiles-8f008a3c52e156e07dd35edd1e69651a6f17c648.tar.xz dotfiles-8f008a3c52e156e07dd35edd1e69651a6f17c648.zip |
Fixed copied code part
-rw-r--r-- | .xmonad/xmonad.hs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.xmonad/xmonad.hs b/.xmonad/xmonad.hs index 4cc7f63..e6a581d 100644 --- a/.xmonad/xmonad.hs +++ b/.xmonad/xmonad.hs | |||
@@ -123,11 +123,12 @@ main = do | |||
123 | , logHook = dynamicLogWithPP xmobarPP' | 123 | , logHook = dynamicLogWithPP xmobarPP' |
124 | , modMask = mod4Mask | 124 | , modMask = mod4Mask |
125 | , keys = \conf -> hKeysMod host conf $ myKeys' conf | 125 | , keys = \conf -> hKeysMod host conf $ myKeys' conf |
126 | , workspaces = take (length numKeys) $ map (hWsp host) [1..] | 126 | , workspaces = take (length numKeys) $ map wsp [1..] |
127 | , startupHook = assimilateKeychain >> (sequence autostart) >> (setDefaultCursor xC_left_ptr) >> banishScreen LowerRight >> return () | 127 | , startupHook = assimilateKeychain >> (sequence autostart) >> (setDefaultCursor xC_left_ptr) >> banishScreen LowerRight >> return () |
128 | , normalBorderColor = "#202020" | 128 | , normalBorderColor = "#202020" |
129 | , focusedBorderColor = "white" | 129 | , focusedBorderColor = "white" |
130 | } | 130 | } |
131 | wsp = hWsp host | ||
131 | -- We can´t define per-host layout modifiers because we lack dependent types | 132 | -- We can´t define per-host layout modifiers because we lack dependent types |
132 | layout' = onWorkspace (wsp 1) (noBorders Full ||| withIM (1%5) (Title "Buddy List") (tabbedLayout tabbedBottomAlways)) $ | 133 | layout' = onWorkspace (wsp 1) (noBorders Full ||| withIM (1%5) (Title "Buddy List") (tabbedLayout tabbedBottomAlways)) $ |
133 | onWorkspace (wsp 10) (noBorders Full) $ | 134 | onWorkspace (wsp 10) (noBorders Full) $ |