Files
dots/config/polybar/launch.sh
2025-11-24 19:46:30 +07:00

12 lines
295 B
Bash
Executable File

#!/usr/bin/env bash
# Terminate already running bar instances
killall -q polybar
# Wait until the processes have been shut down
while pgrep -u $UID -x polybar >/dev/null; do sleep 1; done
# Launch Polybar
polybar top -c ~/.config/polybar/config.ini &
#notify-send "Launched the main bar ..."