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

  1. #!/usr/bin/env bash
  2. if [[ "$1" = "+" ]]; then
  3. bspc config -d focused left_padding $((`bspc config -d focused left_padding ` + 16 ))
  4. bspc config -d focused right_padding $((`bspc config -d focused right_padding ` + 16 ))
  5. bspc config -d focused top_padding $((`bspc config -d focused top_padding ` + 9 ))
  6. bspc config -d focused bottom_padding $((`bspc config -d focused bottom_padding ` + 9 ))
  7. else
  8. bspc config -d focused left_padding $((`bspc config -d focused left_padding ` - 16 ))
  9. bspc config -d focused right_padding $((`bspc config -d focused right_padding ` - 16 ))
  10. bspc config -d focused top_padding $((`bspc config -d focused top_padding ` - 9 ))
  11. bspc config -d focused bottom_padding $((`bspc config -d focused bottom_padding ` - 9 ))
  12. fi