mirror of
https://github.com/DerTyp7/.dotfiles.git
synced 2025-10-28 20:42:16 +01:00
11 lines
202 B
Bash
Executable File
11 lines
202 B
Bash
Executable File
#!/usr/bin/env sh
|
|
|
|
# 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 &
|