mirror of
https://github.com/ItsDrike/dotfiles.git
synced 2024-11-10 02:39:40 +00:00
Adjust xmonad window management shortcuts
This commit is contained in:
parent
685b7fa387
commit
27df041884
|
@ -141,12 +141,13 @@ myKeys =
|
||||||
, ("M-.", nextScreen) -- Switch focus to next monitor
|
, ("M-.", nextScreen) -- Switch focus to next monitor
|
||||||
, ("M-,", prevScreen) -- Switch focus to prev monitor
|
, ("M-,", prevScreen) -- Switch focus to prev monitor
|
||||||
, ("M-S-<KP_Add>", shiftTo Next nonNSP >> moveTo Next nonNSP) -- Shifts focused window to next ws
|
, ("M-S-<KP_Add>", shiftTo Next nonNSP >> moveTo Next nonNSP) -- Shifts focused window to next ws
|
||||||
, ("M-S-<KP-Subtract>", shiftTo Prev nonNSP >> moveTo Prev nonNSP) -- Shifts focused window to prev ws
|
, ("M-S-<KP_Subtract>", shiftTo Prev nonNSP >> moveTo Prev nonNSP) -- Shifts focused window to prev ws
|
||||||
|
|
||||||
-- Floating windows
|
-- Floating windows
|
||||||
, ("M-f", sendMessage (T.Toggle "floats")) -- Toggles 'floats' layout
|
, ("M-f", withFocused $ float) -- Make window float
|
||||||
, ("M-t", withFocused $ windows . W.sink) -- Push floating window back to tile
|
, ("M-t", withFocused $ windows . W.sink) -- Push floating window back to tile
|
||||||
, ("M-S-t", sinkAll) -- Push all floating windows to tile
|
, ("M-S-t", sinkAll) -- Push all floating windows to tile
|
||||||
|
, ("M-S-f", sendMessage (T.Toggle "floats")) -- Toggles 'floats' layout
|
||||||
|
|
||||||
-- Increase/decrease spacing (gaps)
|
-- Increase/decrease spacing (gaps)
|
||||||
, ("C-M1-j", decWindowSpacing 4) -- Decrease window spacing
|
, ("C-M1-j", decWindowSpacing 4) -- Decrease window spacing
|
||||||
|
|
Loading…
Reference in a new issue