diff options
author | Ben Sima <ben@bsima.me> | 2022-08-08 12:42:23 -0400 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2022-08-08 12:42:23 -0400 |
commit | 57830e05517c70e2d076bb52fe8e6f098b76b449 (patch) | |
tree | 34649fb8e565a2d5703c40e2df30a2e2e9014920 | |
parent | 3db4b048ca74dd357b70cf4708b23b51beb6f04d (diff) |
Enable all 9 workspaces
xmonad sets 9 workspaces by default so just use them all
-rw-r--r-- | lib/xmonad.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/xmonad.hs b/lib/xmonad.hs index 06b6f83..51ae0a8 100644 --- a/lib/xmonad.hs +++ b/lib/xmonad.hs @@ -108,7 +108,7 @@ goldenSpiral :: SpiralWithDir a goldenSpiral = spiral (6 / 7) myWorkspaces :: [String] -myWorkspaces = ["1[org]", "2[dev]", "3[chat]", "4[lithium]", "5[mon]", "6"] +myWorkspaces = ["1[org]", "2[dev]", "3[chat]", "4[lithium]", "5[mon]", "6", "7", "8", "9"] addSpace :: l a -> ModifiedLayout Spacing l a addSpace = |