14 lines
319 B
Bash
14 lines
319 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
dir="$HOME/.config/polybar"
|
||
|
themes=(`ls --hide="launch.sh" $dir`)
|
||
|
|
||
|
# Terminate already running bar instances
|
||
|
killall -q polybar
|
||
|
|
||
|
# Wait until the processes have been shut down
|
||
|
while pgrep -u $UID -x polybar > /dev/null; do sleep 1; done
|
||
|
|
||
|
# Launch the Bar
|
||
|
polybar -q top -c "$dir/hack/config.ini" &
|