7 lines
100 B
Bash
7 lines
100 B
Bash
|
if [[ $(pgrep gpu-screen-reco) ]]; then
|
||
|
echo "on: $(cat /tmp/replay.tmp)"
|
||
|
else
|
||
|
echo "off"
|
||
|
fi
|
||
|
|