Last active
July 14, 2021 18:05
-
-
Save windelicato/e3676d653283a8febc78 to your computer and use it in GitHub Desktop.
Use the same keybindings to move / resize tiled + pseudotiled + floating windows in BSPWM
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Sample sxhkd usage: | |
# | |
# alt + {a,f} | |
# /home/sunn/scripts/bspwm_resize {-p,-n} -x -s 20 | |
# | |
# alt + {s,d} | |
# /home/sunn/scripts/bspwm_resize {-p,-n} -y -s 20 | |
POSITIVE=false | |
HORIZONTAL=false | |
SIZE='20' | |
err() { | |
echo "$1" | |
exit 1 | |
} | |
usage() { | |
echo "usage: bspwm_resize [direction]" | |
echo | |
echo "Options:" | |
echo " -p, --positive - resize in positively" | |
echo " -n, --negative - resize in negatively" | |
echo " -x, --xdir - resize in x direction" | |
echo " -y, --ydir - resize in y dir" | |
echo " -s, - number of pixels to resize or move" | |
echo " -h, --help - display this" | |
exit | |
} | |
if [[ $# -eq 0 ]] ; then | |
usage | |
exit | |
fi | |
for i in "$@"; do | |
case $i in | |
'-p'|'--positive') | |
POSITIVE=true | |
;; | |
'-n'|'--negative') | |
POSITIVE=false | |
;; | |
'-x'|'--xdir') | |
HORIZONTAL=true | |
;; | |
'-y'|'--ydir') | |
HORIZONTAL=false | |
;; | |
'-s') | |
SIZE=$(echo $@ | sed 's/.*-s \([0-9]*\).*/\1/') | |
[[ "$SIZE" == "$@" ]] && err "Must specify number of pixels" | |
;; | |
''|'-h'|'--help') | |
usage | |
exit | |
;; | |
*) | |
;; | |
esac | |
done | |
# Find current window mode | |
WINDOW_STATUS="$(bspc query -T -w | awk '/^.* [a-zA-Z\-]{8} \*$/{print $8}')" | |
FLAGS="$(echo $WINDOW_STATUS | sed 's/-//g')"; | |
# If the window is floating, move it | |
if [[ "$FLAGS" =~ ^.*f.*$ ]]; then | |
$HORIZONTAL && switch="-x" || switch="-y" | |
$POSITIVE && sign="+" || sign="-" | |
xdo move ${switch} ${sign}${SIZE} | |
# If the window is pseudotiled, resize it | |
elif [[ "$FLAGS" =~ ^.*d.*$ ]]; then | |
$HORIZONTAL && switch="-w" || switch="-h" | |
$POSITIVE && sign="+" || sign="-" | |
xdo resize ${switch} ${sign}${SIZE} | |
# Otherwise, window is tiled change split ratio | |
else | |
$HORIZONTAL && switch=('left' 'right') || switch=('down' 'up') | |
$POSITIVE && sign="+" || sign="-" | |
bspc window -e ${switch[0]} ${sign}${SIZE} || bspc window -e ${switch[1]} ${sign}${SIZE} | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment