mirror of
https://github.com/Manoj-HV30/i3wm-ubuntu-dotfiles.git
synced 2026-05-16 19:35:23 +00:00
12 lines
212 B
Bash
Executable File
12 lines
212 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Kill any existing polybar
|
|
killall -q polybar
|
|
|
|
# Wait until it fully closes
|
|
while pgrep -u $UID -x polybar >/dev/null; do sleep 1; done
|
|
|
|
# Launch Polybar on your display
|
|
polybar mybar -r &
|
|
|