mirror of
https://gitlab.com/dwt1/dotfiles.git
synced 2026-04-21 18:40:26 +10:00
Restructing the entire dotfile repo!
This commit is contained in:
17
.config/polybar/launch.sh
Executable file
17
.config/polybar/launch.sh
Executable file
@@ -0,0 +1,17 @@
|
||||
#!/usr/bin/env 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
|
||||
|
||||
if type "xrandr"; then
|
||||
for m in $(xrandr --query | grep " connected" | cut -d" " -f1); do
|
||||
MONITOR=$m polybar --reload mainbar-i3 &
|
||||
done
|
||||
else
|
||||
polybar --reload mainbar-i3 &
|
||||
fi
|
||||
|
||||
echo "Bars launched..."
|
||||
Reference in New Issue
Block a user