mirror of
https://github.com/stronk-dev/Tokyo-Night-Linux.git
synced 2025-03-13 23:07:50 -04:00
10 lines
199 B
Bash
10 lines
199 B
Bash
![]() |
#!/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
|