Files
misc/bin/st-rec
2025-07-02 00:07:49 -07:00

9 lines
118 B
Bash
Executable File

#!/bin/sh
sleep 1
PID=$(pidof ffmpeg)
if [ -n "$PID" ]; then
echo " REC"
elif [ -z "$PID" ]; then
echo " IDLE"
fi