mirror of
https://github.com/xmonad/xmonad-contrib.git
synced 2025-08-01 20:51:52 -07:00
XMonad.Actions.PhysicalScreens: fix typo spotted by Chris Pick <haskell@chrispick.com>
This commit is contained in:
@@ -41,7 +41,7 @@ and then left-to-right.
|
|||||||
|
|
||||||
Example usage in your @~\/.xmonad\/xmonad.hs@ file:
|
Example usage in your @~\/.xmonad\/xmonad.hs@ file:
|
||||||
|
|
||||||
> import XMonad.Actions.PhysicalSCreens
|
> import XMonad.Actions.PhysicalScreens
|
||||||
|
|
||||||
> , ((modMask, xK_a), onPrevNeighbour W.view)
|
> , ((modMask, xK_a), onPrevNeighbour W.view)
|
||||||
> , ((modMask, xK_o), onNextNeighbour W.view)
|
> , ((modMask, xK_o), onNextNeighbour W.view)
|
||||||
@@ -112,4 +112,3 @@ onNextNeighbour = neighbourWindows 1
|
|||||||
-- | Apply operation on a WindowSet with the WorkspaceId of the previous screen in the physical order as parameter.
|
-- | Apply operation on a WindowSet with the WorkspaceId of the previous screen in the physical order as parameter.
|
||||||
onPrevNeighbour :: (WorkspaceId -> WindowSet -> WindowSet) -> X ()
|
onPrevNeighbour :: (WorkspaceId -> WindowSet -> WindowSet) -> X ()
|
||||||
onPrevNeighbour = neighbourWindows (-1)
|
onPrevNeighbour = neighbourWindows (-1)
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user