13 lines
229 B
Bash
Executable File
13 lines
229 B
Bash
Executable File
#!/usr/bin/env sh
|
|
|
|
PATH="/usr/local/bin:$PATH"
|
|
|
|
# Terminate already running bar instances
|
|
killall -q waybar
|
|
|
|
# Wait until the processes have been shut down
|
|
while pgrep -x waybar >/dev/null; do sleep 1; done
|
|
|
|
# Launch main
|
|
waybar
|