[screenrecord.sh] Various improvements.

wq
This commit is contained in:
Lorenzo Cogotti 2022-11-06 22:55:15 +01:00
parent 2cb03748d0
commit 8bce55645f
1 changed files with 2 additions and 2 deletions

View File

@ -23,11 +23,11 @@
#
# 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"
isrunning() {
pid=$(cat "$pidfile" 2>/dev/null)
pid=$(2>/dev/null <"$pidfile")
test $? && kill -s 0 -- "$pid" 2>/dev/null
return $?
}