diff options
author | azahi <azahi@teknik.io> | 2018-10-08 21:18:13 +0300 |
---|---|---|
committer | azahi <azahi@teknik.io> | 2018-10-08 21:18:13 +0300 |
commit | d7176233da673ea5d92eadcbf52323b5d8419cfd (patch) | |
tree | f603bee246db9a0ca0d5c89933b34064f76495cf /src/XMonad/Custom/Workspaces.hs | |
parent | Clean up Actions (diff) |
Rework Custom
Change the names of high-order functoins Remove named keybindings Add check executable for keybindings Expand xmonad-ng library Bump to 0.15.1
Diffstat (limited to '')
-rw-r--r-- | src/XMonad/Custom/Workspaces.hs | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/XMonad/Custom/Workspaces.hs b/src/XMonad/Custom/Workspaces.hs index 3c15671..555bf20 100644 --- a/src/XMonad/Custom/Workspaces.hs +++ b/src/XMonad/Custom/Workspaces.hs @@ -11,15 +11,14 @@ ----------------------------------------------------------------------------- module XMonad.Custom.Workspaces - ( workspaces' + ( workspaces ) where import XMonad.Actions.DynamicProjects -import XMonad.Core -import XMonad.Custom.Misc +import XMonad.Core hiding (workspaces) -workspaces' :: [WorkspaceId] -workspaces' = map show [1..9 :: Int] +workspaces :: [WorkspaceId] +workspaces = map show [1..9 :: Int] projects :: [Project] projects = |