mirror of
https://codeberg.org/leana8959/.files.git
synced 2025-12-06 14:49:14 +00:00
vanadium/xmonad: use sift instead of swap
This commit is contained in:
parent
9b52493e5f
commit
9f080c0707
1 changed files with 5 additions and 0 deletions
|
|
@ -2,6 +2,7 @@
|
|||
|
||||
import XMonad
|
||||
import XMonad.Actions.CopyWindow
|
||||
import XMonad.Actions.Sift
|
||||
import XMonad.Actions.Submap
|
||||
import XMonad.Actions.SwapWorkspaces
|
||||
import XMonad.Hooks.DynamicLog
|
||||
|
|
@ -227,6 +228,10 @@ keybinds =
|
|||
-- Toggle fullscreen
|
||||
, ((superMask, xK_Escape), sendMessage NextLayout)
|
||||
|
||||
-- Sift instead of swap
|
||||
, ((superMask .|. shiftMask, xK_j), windows siftDown)
|
||||
, ((superMask .|. shiftMask, xK_k), windows siftUp )
|
||||
|
||||
-- Resize windows
|
||||
, ((superMask, xK_equal ), sendMessage $ IncMasterN 1)
|
||||
, ((superMask, xK_minus ), sendMessage $ IncMasterN -1)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue