wm-logs/home/config/polybar/launch.sh

10 lines
218 B
Bash
Executable File

#!/bin/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 main -r &
~~i3历险记~~, i3从入门到放弃, 转战bspwm
Shell 100%