speedwm-personal/scripts/speedwm_status
2022-10-09 16:51:49 +02:00

12 lines
170 B
Bash
Executable file

#!/bin/sh
# speedwm_status
# status bar manager
STATUSBAR="status"
IN_ARGS="$@"
pgrep -x $STATUSBAR || $STATUSBAR $IN_ARGS > /tmp/statusbar-log &
sleep 3
$0 && exit 0