fix workspace names of program workspaces
This commit is contained in:
parent
d9d2f9d52c
commit
feb2633282
1 changed files with 3 additions and 3 deletions
|
@ -45,13 +45,13 @@ quadrupleToPairBack (_, _, c, d) = (c, d)
|
|||
zipWithSnd :: (a -> b -> c) -> [(d,a)] -> [b] -> [(d,c)]
|
||||
zipWithSnd f = zipWith $ \(d,a) -> \b -> (d, f a b)
|
||||
|
||||
first4 :: (a,b,c,d) -> a
|
||||
first4 (a, _, _, _) = a
|
||||
second4 :: (a,b,c,d) -> b
|
||||
second4 (_, b, _, _) = b
|
||||
|
||||
|
||||
-- | workSpaces itself
|
||||
myProgramWorkSpaces :: [String]
|
||||
myProgramWorkSpaces = map first4 myProgramWorkSpacesConfig
|
||||
myProgramWorkSpaces = map second4 myProgramWorkSpacesConfig
|
||||
|
||||
|
||||
-- | Bindings to move/focus to program workspaces
|
||||
|
|
Loading…
Reference in a new issue