Revert "vanadium/xmonad: use sift instead of swap"

This reverts commit 9f080c0707.
This commit is contained in:
Primrose 2025-11-24 13:40:47 +08:00
parent c72ef76b20
commit cc13b4d51e
Signed by: primrose
GPG key ID: 4E887A4CA9714ADA

View file

@ -2,7 +2,6 @@
import XMonad import XMonad
import XMonad.Actions.CopyWindow import XMonad.Actions.CopyWindow
import XMonad.Actions.Sift
import XMonad.Actions.Submap import XMonad.Actions.Submap
import XMonad.Actions.SwapWorkspaces import XMonad.Actions.SwapWorkspaces
import XMonad.Hooks.DynamicLog import XMonad.Hooks.DynamicLog
@ -267,10 +266,6 @@ keybinds =
-- Toggle fullscreen -- Toggle fullscreen
, ((superMask, xK_Escape), sendMessage NextLayout) , ((superMask, xK_Escape), sendMessage NextLayout)
-- Sift instead of swap
, ((superMask .|. shiftMask, xK_j), windows siftDown)
, ((superMask .|. shiftMask, xK_k), windows siftUp )
-- Resize windows -- Resize windows
, ((superMask, xK_equal ), sendMessage $ IncMasterN 1) , ((superMask, xK_equal ), sendMessage $ IncMasterN 1)
, ((superMask, xK_minus ), sendMessage $ IncMasterN -1) , ((superMask, xK_minus ), sendMessage $ IncMasterN -1)