diff options
| author | Josh Rahm <rahm@google.com> | 2024-01-26 15:14:56 -0700 |
|---|---|---|
| committer | Josh Rahm <rahm@google.com> | 2024-01-26 15:14:56 -0700 |
| commit | bbe7717e629b5a265c967652a946fa7563a747ff (patch) | |
| tree | adcee5c2b2894fd582a4950b70aa35f29320b86b /src | |
| parent | 11c72d913f5d3f0f4f9c65ffe1b680d6c2dfcf26 (diff) | |
| download | rde-bbe7717e629b5a265c967652a946fa7563a747ff.tar.gz rde-bbe7717e629b5a265c967652a946fa7563a747ff.tar.bz2 rde-bbe7717e629b5a265c967652a946fa7563a747ff.zip | |
Change the default workspaces to use some of my common letters first.
Diffstat (limited to 'src')
| -rw-r--r-- | src/Main.hs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/Main.hs b/src/Main.hs index f1938a6..a0e13cb 100644 --- a/src/Main.hs +++ b/src/Main.hs @@ -2,6 +2,7 @@ import Control.Monad.Reader ( MonadReader (ask), ReaderT (runReaderT), ) +import Data.Char (toUpper) import Data.List (isPrefixOf) import Data.Monoid (Endo (Endo)) import qualified Rahm.Desktop.BorderColors @@ -123,9 +124,10 @@ main = do ], -- This config uses dynamic workspaces, but I have to seed XMonad -- with something. However, this configuration only supports 36 - -- monitors on boot. If you need more than 36 monitors, you'll have to + -- monitors on boot. If you need more than 15 monitors, you'll have to -- configure those ones after starting XMonad. - workspaces = map return (['0' .. '9'] ++ ['a' .. 'z']), + workspaces = + map return (['w', 'r', 'j', 's', 't'] ++ ['0'..'9']), handleEventHook = composeAll [ fullscreenEventHook, |