Record black screen instead of crash when compositor + window is not supported at the moment

This commit is contained in:
dec05eba
2022-03-22 13:33:02 +01:00
parent b8f643a7e1
commit ff8fa9f0f7
3 changed files with 19 additions and 12 deletions

9
toggle-recording-selected.sh Executable file
View File

@@ -0,0 +1,9 @@
#!/bin/sh -e
killall -INT gpu-screen-recorder && notify-send -u low 'GPU Screen Recorder' 'Stopped recording' && exit 0;
window=$(xdotool selectwindow)
active_sink="$(pactl get-default-sink).monitor"
mkdir -p "$HOME/Videos"
video="$HOME/Videos/$(date +"Video_%Y-%m-%d_%H-%M-%S.mp4")"
notify-send -u low 'GPU Screen Recorder' "Started recording video to $video"
gpu-screen-recorder -w "$window" -c mp4 -f 60 -a "$active_sink" -o "$video"