From b4b86215b502ced23594bf08b2b4095cb6155977 Mon Sep 17 00:00:00 2001 From: Donovan Glover Date: Sat, 20 Oct 2018 10:23:53 -0400 Subject: [PATCH] sxhkd: Remove resize keybinds I don't think I've ever used these keybinds after I learned about holding the left mouse button to move windows and holding the right mouse button to resize them. If you don't have access to a mouse, you probably don't need to resize windows anyway, and certainly not float them. tmux is still an option, and the preselect ratio option of bspc is still there. Ultimately, since sxhkd just runs shell commands, you can resize windows through a terminal or shell script as well. --- .config/sxhkd/sxhkdrc | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/.config/sxhkd/sxhkdrc b/.config/sxhkd/sxhkdrc index 63ffd9ea..014ab620 100644 --- a/.config/sxhkd/sxhkdrc +++ b/.config/sxhkd/sxhkdrc @@ -96,20 +96,4 @@ super + ctrl + {h,j,k,l,space} super + ctrl + {1-9} bspc node -o 0.{1-9} -# ====================== -# ======= Resize ======= -# ====================== - -# Expand a window (move its side outward) -super + alt + {h,j,k,l} - bspc node -z {left -20 0,bottom 0 20,top 0 -20,right 20 0} - -# Contract a window (move its side inward) -super + alt + shift + {h,j,k,l} - bspc node -z {right -20 0,top 0 20,bottom 0 -20,left 20 0} - -# Move a floating window -super + {Left,Down,Up,Right} - bspc node -v {-20 0,0 20,0 -20,20 0} - # vim:ft=sxhkdrc