18 lines
395 B
Bash
18 lines
395 B
Bash
#!/usr/bin/env bash
|
|
|
|
# Terminate already running bar instances
|
|
# If all your bars have ipc enabled, you can use
|
|
polybar-msg cmd quit
|
|
# Otherwise you can use the nuclear option:
|
|
# killall -q polybar
|
|
|
|
if type "xrandr"; then
|
|
for m in $(xrandr --query | grep " connected" | cut -d" " -f1); do
|
|
MONITOR=$m polybar --reload lho &
|
|
done
|
|
else
|
|
polybar --reload lho &
|
|
fi
|
|
|
|
echo "Bars launched..."
|