Files
dotfiles/legacy/waybar/.config/waybar/waybar.sh
T
2026-03-12 03:49:47 +01:00

11 lines
213 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 -u "$USER" >/dev/null; do sleep 1; done
# Launch main
waybar &