diff options
-rw-r--r-- | XMonad/Actions/OnScreen.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/XMonad/Actions/OnScreen.hs b/XMonad/Actions/OnScreen.hs index 6786766..41c3c34 100644 --- a/XMonad/Actions/OnScreen.hs +++ b/XMonad/Actions/OnScreen.hs @@ -180,7 +180,7 @@ toggleOrView' f i st = fromMaybe (f i st) $ do -- -- A more basic version inside the default keybindings would be: -- --- > , ((modm .|. 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\". -- |