dotfiles/.config/polybar/launch.sh

15 lines
402 B
Bash
Executable file

#!/usr/bin/env bash
#i stole this from dt
# 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
for m in $(polybar --list-monitors | cut -d":" -f1); do
WIRELESS=$(ls /sys/class/net/ | grep ^wl | awk 'NR==1{print $1}') MONITOR=$m polybar --reload qbar &
done
echo "Bars launched..."