New Termianls

This commit is contained in:
OdiousImp2604
2021-02-04 13:19:46 +00:00
committed by GitHub
parent 8cd1f75dcb
commit c6796b1ff6
13 changed files with 164 additions and 11 deletions

View File

@@ -0,0 +1,11 @@
#!/bin/bash
pid=`pgrep wf-recorder`
status=$?
if [ $status != 0 ]
then
echo '{"class": "nothing"}'
else
echo '{"class": "recording"}'
fi;