[XMonad] Change directions back to wasd

This commit is contained in:
Ivan Malison 2021-08-01 15:25:16 -06:00
parent 75093e0979
commit 6dbe933f53
No known key found for this signature in database
GPG Key ID: 62530EFBE99DC2F8

View File

@ -881,10 +881,10 @@ mute = spawn "set_volume.sh --toggle-mute"
shiftToEmptyOnScreen direction = shiftToEmptyOnScreen direction =
followingWindow (windowToScreen direction True) >> shiftToEmptyAndView followingWindow (windowToScreen direction True) >> shiftToEmptyAndView
directionalUp = xK_k directionalUp = xK_w
directionalDown = xK_j directionalDown = xK_s
directionalLeft = xK_h directionalLeft = xK_a
directionalRight = xK_l directionalRight = xK_d
buildDirectionalBindings mask commandFn = buildDirectionalBindings mask commandFn =
[ ((mask, directionalUp ), commandFn U) [ ((mask, directionalUp ), commandFn U)
@ -992,7 +992,6 @@ addKeys conf@XConfig { modMask = modm } =
, ((hyper .|. shiftMask, xK_k), , ((hyper .|. shiftMask, xK_k),
spawn "rofi_kill_all.sh") spawn "rofi_kill_all.sh")
, ((hyper, xK_r), spawn "rofi-systemd") , ((hyper, xK_r), spawn "rofi-systemd")
, ((hyper, xK_0), spawn "tvpower.js")
, ((modalt, xK_z), spawn "split_chrome_tab_to_next_screen.sh") , ((modalt, xK_z), spawn "split_chrome_tab_to_next_screen.sh")
, ((hyper, xK_9), spawn "start_synergy.sh") , ((hyper, xK_9), spawn "start_synergy.sh")
, ((hyper, xK_slash), spawn "toggle_taffybar.sh") , ((hyper, xK_slash), spawn "toggle_taffybar.sh")