diff options
-rw-r--r-- | .xmonad/xmonad.hs | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/.xmonad/xmonad.hs b/.xmonad/xmonad.hs index 569d428..287247d 100644 --- a/.xmonad/xmonad.hs +++ b/.xmonad/xmonad.hs | |||
@@ -86,9 +86,11 @@ hostFromName h@("vali") = defaultHost { hName = h | |||
86 | ] | 86 | ] |
87 | hWsp = wspFromMap workspaceNames | 87 | hWsp = wspFromMap workspaceNames |
88 | hCoWsp = coWspFromMap workspaceNames | 88 | hCoWsp = coWspFromMap workspaceNames |
89 | hScreenPerm 1 = 2 | 89 | hScreenPerm = map hPrim |
90 | hScreenPerm 2 = 1 | 90 | where |
91 | hScreenPerm x = x | 91 | hPrim 1 = 2 |
92 | hPrim 2 = 1 | ||
93 | hPrim x = x | ||
92 | hostFromName _ = defaultHost | 94 | hostFromName _ = defaultHost |
93 | 95 | ||
94 | wspFromMap workspaceNames = \i -> case Map.lookup i workspaceNames of | 96 | wspFromMap workspaceNames = \i -> case Map.lookup i workspaceNames of |