parent
2cb03748d0
commit
8bce55645f
|
@ -23,11 +23,11 @@
|
||||||
#
|
#
|
||||||
# Author Lorenzo Cogotti, The DoubleFourteen Code Forge
|
# Author Lorenzo Cogotti, The DoubleFourteen Code Forge
|
||||||
|
|
||||||
pidfile="/var/run/user/$(id -u)/screenrecord.pid"
|
pidfile="$XDG_RUNTIME_DIR/screenrecord.pid"
|
||||||
filename="$(xdg-user-dir VIDEOS)/ScreenCast_$(date +%F_%T).mp4"
|
filename="$(xdg-user-dir VIDEOS)/ScreenCast_$(date +%F_%T).mp4"
|
||||||
|
|
||||||
isrunning() {
|
isrunning() {
|
||||||
pid=$(cat "$pidfile" 2>/dev/null)
|
pid=$(2>/dev/null <"$pidfile")
|
||||||
test $? && kill -s 0 -- "$pid" 2>/dev/null
|
test $? && kill -s 0 -- "$pid" 2>/dev/null
|
||||||
return $?
|
return $?
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue