17 lines
248 B
Bash
Executable File
17 lines
248 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
visible=$CONFIG/polybar/visible
|
|
barheight=27
|
|
|
|
if [ -f $visible ]; then
|
|
bspc config top_padding 0
|
|
polybar-msg cmd hide
|
|
rm $visible
|
|
else
|
|
bspc config top_padding 27
|
|
polybar-msg cmd show
|
|
touch $visible
|
|
fi
|
|
|
|
|