wm-logs/home/config/polybar/launch.sh

10 lines
218 B
Bash
Raw Normal View History

2023-06-28 19:31:09 +08:00
#!/bin/bash
# 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 polybar
polybar main -r &