diff options
author | azahi <azahi@teknik.io> | 2018-06-12 22:59:58 +0300 |
---|---|---|
committer | azahi <azahi@teknik.io> | 2018-06-12 22:59:58 +0300 |
commit | b975c0a90dce97c8d96ab464d69575a9d8c150b3 (patch) | |
tree | 714936c56a45e1142347d763e01984f5db881fbf /src/XMonad/Custom/Workspaces.hs | |
parent | Add Stack integration (diff) |
Add X.Custom and split existing code in modules
Diffstat (limited to '')
-rw-r--r-- | src/XMonad/Custom/Workspaces.hs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/XMonad/Custom/Workspaces.hs b/src/XMonad/Custom/Workspaces.hs new file mode 100644 index 0000000..beae415 --- /dev/null +++ b/src/XMonad/Custom/Workspaces.hs @@ -0,0 +1,8 @@ +module XMonad.Custom.Workspaces + ( workspaces' + ) where + +import XMonad.Core + +workspaces' :: [WorkspaceId] +workspaces' = map show [1 .. 9 :: Int] |