This commit is contained in:
2025-12-28 13:55:10 -08:00
commit 9b4219aa67
131 changed files with 32853 additions and 0 deletions

10
scripts/start-stop-recording.sh Executable file
View File

@ -0,0 +1,10 @@
#!/bin/sh
# Simple script to start recording if it's not recording and stop recording
# if it's already recording. This script can be bound to a single hotkey
# to start/stop recording with a single hotkey.
killall -SIGINT -q gpu-screen-recorder && exit 0
video="$HOME/Videos/$(date +"Video_%Y-%m-%d_%H-%M-%S.mp4")"
gpu-screen-recorder -w screen -f 60 -a default_output -o "$video"
notify-send -t 2000 -u low "GPU Screen Recorder" "Video saved to $video"