9 lines
133 B
Bash
Executable File
9 lines
133 B
Bash
Executable File
#!/bin/sh
|
|
sleep 0.5
|
|
PID=$(pidof gpu-screen-recorder)
|
|
if [ -n "$PID" ]; then
|
|
echo " REC"
|
|
#elif [ -z "$PID" ]; then
|
|
# echo " - "
|
|
fi
|