speedwm-personal/scripts/speedwm_status

15 lines
202 B
Plaintext
Raw Normal View History

2022-10-01 22:46:40 +02:00
#!/bin/sh
# speedwm_status
# status bar manager
2022-10-09 15:11:42 +02:00
STATUSBAR="status"
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