speedwm-personal/scripts/speedwm_status
2022-10-09 15:11:42 +02:00

17 lines
316 B
Bash
Executable file

#!/bin/sh
# speedwm_status
# status bar manager
STATUSBAR="status"
IN_ARGS="$@"
# check if the two values are the same, if not then we use the rc config
if [ "$STATUSBAR" != "$STATUSBAR2" ]; then
STATUSBAR="$STATUSBAR2"
fi
pgrep -x $STATUSBAR || $STATUSBAR $IN_ARGS > /tmp/statusbar-log &
sleep 3
$0 && exit 0