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