added some scripts and configuration for gpu screen recorder. note: gpu-screen-recorder must be installed for this

This commit is contained in:
2026-01-30 18:29:51 +01:00
parent fff6779344
commit b6d1be0efc
4 changed files with 19 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
#!/bin/sh -e
killall -SIGUSR1 gpu-screen-recorder && sleep 0.5 && notify-send -t 1500 -u low -- "GPU Screen Recorder" "Replay saved"

View File

@@ -0,0 +1,6 @@
#!/bin/sh
pidof -q gpu-screen-recorder && exit 0
video_path="$HOME/Videos"
mkdir -p "$video_path"
gpu-screen-recorder -w screen -f 60 -a default_output -c mkv -bm cbr -q 40000 -r 60 -o "$video_path"