You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

14 lines
756 B

#!/usr/bin/env bash
if [[ "$1" = "+" ]]; then
bspc config -d focused left_padding $((`bspc config -d focused left_padding ` + 16 ))
bspc config -d focused right_padding $((`bspc config -d focused right_padding ` + 16 ))
bspc config -d focused top_padding $((`bspc config -d focused top_padding ` + 9 ))
bspc config -d focused bottom_padding $((`bspc config -d focused bottom_padding ` + 9 ))
else
bspc config -d focused left_padding $((`bspc config -d focused left_padding ` - 16 ))
bspc config -d focused right_padding $((`bspc config -d focused right_padding ` - 16 ))
bspc config -d focused top_padding $((`bspc config -d focused top_padding ` - 9 ))
bspc config -d focused bottom_padding $((`bspc config -d focused bottom_padding ` - 9 ))
fi