From 1ee2587a8f800c2f49c49258aec92d3e73980e9e Mon Sep 17 00:00:00 2001 From: dec05eba Date: Sat, 21 Sep 2024 17:51:01 +0200 Subject: exit 0 instead of exit 1 --- scripts/start-stop-recording.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scripts/start-stop-recording.sh') diff --git a/scripts/start-stop-recording.sh b/scripts/start-stop-recording.sh index bbcd27f..775a829 100755 --- a/scripts/start-stop-recording.sh +++ b/scripts/start-stop-recording.sh @@ -4,7 +4,7 @@ # 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 1 +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" -- cgit v1.2.3