diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/Main.hs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/Main.hs b/src/Main.hs index 25403d4..81a874b 100644 --- a/src/Main.hs +++ b/src/Main.hs @@ -38,7 +38,6 @@ main = do setEnv "ROFI" menuCommandString xmobar <- spawnXMobar - count <- fromIntegral . screenCount <$> openDisplay "" (=<<) X.xmonad $ applyKeys $ withLocationChangeHook historyHook $ ewmh $ docks $ def @@ -68,7 +67,7 @@ main = do -- with something. However, this configuration only supports 36 -- monitors on boot. If you need more than 36 monitors, you'll have to -- configure those ones after starting XMonad. - , workspaces = map return (take count $ ['0'..'9'] ++ ['a'..'z']) + , workspaces = map return (['0'..'9'] ++ ['a'..'z']) , handleEventHook = composeAll [ fullscreenEventHook, |