dotfiles/misc/bin/hidebar
2024-01-04 14:51:36 +00:00

12 lines
302 B
Bash
Executable File

#!/usr/bin/env bash
case $1 in
-h | --hide | hide)
polybar-msg cmd hide | bspc config top_padding 2 | bspc config bottom_padding 2
exit;;
-u | --unhide | unhide)
polybar-msg cmd show | bspc config top_padding 48 | bspc config bottom_padding 48
exit;;
*)
echo "Invalid option"
exit;;
esac