dotfiles/home/dot_config/i3/scripts/executable_polybar.sh.tmpl
2022-12-21 00:07:52 -08:00

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 &