12 lines
302 B
Bash
Executable File
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 |