From 6dbe933f53075c80b155cc9b323e979c5edc2c04 Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Sun, 1 Aug 2021 15:25:16 -0600 Subject: [PATCH] [XMonad] Change directions back to wasd --- dotfiles/config/xmonad/xmonad.hs | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/dotfiles/config/xmonad/xmonad.hs b/dotfiles/config/xmonad/xmonad.hs index 12150bd8..1d5b627c 100644 --- a/dotfiles/config/xmonad/xmonad.hs +++ b/dotfiles/config/xmonad/xmonad.hs @@ -881,10 +881,10 @@ mute = spawn "set_volume.sh --toggle-mute" shiftToEmptyOnScreen direction = followingWindow (windowToScreen direction True) >> shiftToEmptyAndView -directionalUp = xK_k -directionalDown = xK_j -directionalLeft = xK_h -directionalRight = xK_l +directionalUp = xK_w +directionalDown = xK_s +directionalLeft = xK_a +directionalRight = xK_d buildDirectionalBindings mask commandFn = [ ((mask, directionalUp ), commandFn U) @@ -992,7 +992,6 @@ addKeys conf@XConfig { modMask = modm } = , ((hyper .|. shiftMask, xK_k), spawn "rofi_kill_all.sh") , ((hyper, xK_r), spawn "rofi-systemd") - , ((hyper, xK_0), spawn "tvpower.js") , ((modalt, xK_z), spawn "split_chrome_tab_to_next_screen.sh") , ((hyper, xK_9), spawn "start_synergy.sh") , ((hyper, xK_slash), spawn "toggle_taffybar.sh")