dotfiles/.config/polybar/launch.sh

14 lines
319 B
Bash
Executable File

#!/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" &