mirror of
https://github.com/starr-dusT/dotfiles.git
synced 2025-02-19 19:27:31 -08:00
11 lines
237 B
Bash
11 lines
237 B
Bash
|
#!/usr/bin/env sh
|
||
|
|
||
|
# Terminate already running bar instances
|
||
|
killall -q polybar
|
||
|
|
||
|
# Wait until the processes have been shut down
|
||
|
while pgrep -x polybar >/dev/null; do sleep 1; done
|
||
|
|
||
|
# Launch polybar
|
||
|
polybar -c ~/.config/polybar/dracula &
|