mirror of
https://repo.dec05eba.com/gpu-screen-recorder
synced 2026-05-05 22:40:42 +09:00
Record black screen instead of crash when compositor + window is not supported at the moment
This commit is contained in:
9
toggle-recording-selected.sh
Executable file
9
toggle-recording-selected.sh
Executable 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"
|
||||
Reference in New Issue
Block a user