speedwm-personal/scripts/speedwm_status

17 lines
296 B
Bash
Executable file

#!/bin/sh
# speedwm_status
# status bar manager for speedwm/stellar
STATUSBAR="speedwm-stellar" # should be stellar
IN_ARGS="$@" # arguments
mkdir -p $HOME/.config/speedwm/
statusfunc() {
pgrep -x $STATUSBAR || $STATUSBAR $IN_ARGS > /tmp/statusbar-log &
sleep 3
statusfunc
}
statusfunc