voidrice/.local/bin/launch_polybar

12 lines
283 B
Text
Raw Normal View History

#!/bin/sh
2019-11-26 23:04:22 +00:00
# Terminate already running bar instances
killall -q polybar
# Wait until the processes have been shut down
while ps ax | grep -q "\spolybar$"; do sleep 1; done
2019-11-26 23:04:22 +00:00
2019-12-07 21:28:00 +00:00
for i in $(polybar -m | awk -F: '{print $1}'); do MONITOR=$i polybar default & done
2019-11-26 23:04:22 +00:00
echo "Bars launched..."