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