speedwm-personal/scripts/speedwm_status

15 lines
211 B
Plaintext
Raw Normal View History

2022-10-01 22:46:40 +02:00
#!/bin/sh
# speedwm_status
# status bar manager
STATUSBAR="speedwm-stellar"
2022-10-01 22:46:40 +02:00
IN_ARGS="$@"
2022-10-16 13:50:53 +02:00
statusfunc() {
pgrep -x $STATUSBAR || $STATUSBAR $IN_ARGS > /tmp/statusbar-log &
sleep 3
statusfunc
}
2022-10-01 22:46:40 +02:00
2022-10-16 13:50:53 +02:00
statusfunc