feat: xmonad not greedy view

feat/kile-v2
Ricard Illa 2022-04-08 19:36:54 +02:00
parent 97e861e037
commit 4fedceead8
No known key found for this signature in database
GPG Key ID: F69A672B72E54902
1 changed files with 2 additions and 2 deletions

View File

@ -112,7 +112,7 @@ import XMonad.StackSet
, RationalRect (..)
, Workspace (..)
, shift
, greedyView
, view
, swapUp
, swapDown
, sink
@ -367,7 +367,7 @@ workspaceBinds :: XConfig Layout -> M.Map (ButtonMask, KeySym) (X ())
workspaceBinds conf@ XConfig {modMask = modm} = M.fromList $
[((m .|. modm, k), windows $ onCurrentScreen f i)
| (i, k) <- zip (workspaces' conf) [xK_1 .. xK_9]
, (f, m) <- [(greedyView, 0), (shift, shiftMask)]]
, (f, m) <- [(view, 0), (shift, shiftMask)]]
screenBinds :: XConfig Layout -> M.Map (ButtonMask, KeySym) (X ())
screenBinds XConfig {modMask = modm} = M.fromList $