speedwm-personal/scripts/speedwm_status
2022-10-16 13:50:53 +02:00

15 lines
202 B
Bash
Executable file

#!/bin/sh
# speedwm_status
# status bar manager
STATUSBAR="status"
IN_ARGS="$@"
statusfunc() {
pgrep -x $STATUSBAR || $STATUSBAR $IN_ARGS > /tmp/statusbar-log &
sleep 3
statusfunc
}
statusfunc