dotfiles/misc/bin/hidebar
2025-02-07 15:18:20 -05:00

13 lines
303 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 76 | bspc config bottom_padding 76
exit;;
*)
echo "Invalid option"
exit;;
esac