dotfiles/misc/bin/hidebar
2023-11-30 15:01:11 +00:00

21 lines
366 B
Bash
Executable File

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