9 lines
157 B
Bash
Executable File
9 lines
157 B
Bash
Executable File
#!/usr/bin/env sh
|
|
command -v /usr/bin/polybar || return 0
|
|
|
|
killall -q polybar
|
|
|
|
while pgrep -x polybar &>/dev/null; do sleep 0.1; done
|
|
|
|
/usr/bin/polybar i3 &
|