aboutsummaryrefslogtreecommitdiffstats
path: root/XMonad/Actions/OnScreen.hs
diff options
context:
space:
mode:
Diffstat (limited to 'XMonad/Actions/OnScreen.hs')
-rw-r--r--XMonad/Actions/OnScreen.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/XMonad/Actions/OnScreen.hs b/XMonad/Actions/OnScreen.hs
index 783f124..384ec19 100644
--- a/XMonad/Actions/OnScreen.hs
+++ b/XMonad/Actions/OnScreen.hs
@@ -39,7 +39,7 @@ import Data.Function(on)
-- to switch the workspaces with this at the bottom of your keybindings:
--
-- > ++
--- > [ ((m .|. modMask, k), windows (f i))
+-- > [ ((m .|. modm, k), windows (f i))
-- > | (i, k) <- zip (workspaces conf) ([xK_1 .. xK_9] ++ [xK_0])
-- > , (f, m) <- [ (viewOnScreen 0, 0)
-- > , (viewOnScreen 1, controlMask)
@@ -60,7 +60,7 @@ import Data.Function(on)
--
-- A more basic version inside the default keybindings would be:
--
--- > , ((modMask .|. controlMask, xK_1) windows (viewOnScreen 0 "1"))
+-- > , ((modm .|. controlMask, xK_1) windows (viewOnScreen 0 "1"))
--
-- where 0 is the first screen and "1" the workspace with the tag "1".
--