12 lines
254 B
Bash
Executable File
12 lines
254 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# terminate running instances
|
|
killall -q waybar
|
|
|
|
# wait until processes have been shut down
|
|
while pgrep -x waybar >/dev/null; do sleep 0.1; done
|
|
|
|
# launch main
|
|
waybar -c ~/.config/waybar/config.jsonc & -s ~/.config/waybar/style.css
|
|
|