diff options
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/save-replay.sh | 4 | ||||
-rwxr-xr-x | scripts/start-replay.sh | 5 | ||||
-rwxr-xr-x | scripts/stop-replay.sh | 3 |
3 files changed, 12 insertions, 0 deletions
diff --git a/scripts/save-replay.sh b/scripts/save-replay.sh new file mode 100755 index 0000000..eac9141 --- /dev/null +++ b/scripts/save-replay.sh @@ -0,0 +1,4 @@ +#!/bin/sh -e + +killall -SIGUSR1 gpu-screen-recorder +notify-send -t 5000 -u low -- "GPU Screen Recorder" "Replay saved" diff --git a/scripts/start-replay.sh b/scripts/start-replay.sh new file mode 100755 index 0000000..29ff67a --- /dev/null +++ b/scripts/start-replay.sh @@ -0,0 +1,5 @@ +#!/bin/sh + +video_path="$HOME/Videos" +mkdir -p "$video_path" +gpu-screen-recorder -w screen -f 60 -a "$(pactl get-default-sink).monitor" -c mp4 -r 30 -o "$video_path" diff --git a/scripts/stop-replay.sh b/scripts/stop-replay.sh new file mode 100755 index 0000000..d38da9c --- /dev/null +++ b/scripts/stop-replay.sh @@ -0,0 +1,3 @@ +#!/bin/sh + +killall -SIGINT gpu-screen-recorder |