dotfiles/polybar/.config/polybar/launch.sh

12 lines
246 B
Bash
Executable File

#!/bin/bash
# Terminate already running bar instances
killall -q polybar
# Wait until the processes have been shut down
while pgrep -x polybar >/dev/null; do sleep 1; done
# Launch polybar
polybar --config=~/.config/polybar/config.ini main &