mirror of
https://github.com/theKapcioszek/dotfiles-i3.git
synced 2025-04-09 15:54:07 +02:00
11 lines
217 B
Bash
11 lines
217 B
Bash
#!/bin/bash
|
|
|
|
# Terminate already running instances
|
|
killall -q polybar
|
|
|
|
# Wait until the processes have been shut down
|
|
while pgrep -u $UID -x polybar >/dev/null; do sleep 1; done
|
|
|
|
polybar -r base &
|
|
echo "bar launched"
|