dotfiles/script/polybar-toggle
2021-01-14 21:48:31 +02:00

9 lines
143 B
Bash
Executable file

#!/bin/sh
if [ $(pgrep polybar) ]
then
polybar i3bar >/dev/null
# ~/.config/i3/bar.sh
else
killall -q polybar
pkill polybar
fi