files/gpu-screen-recorder-wrapper

13 lines
252 B
Bash
Executable File

#!/bin/bash
DEFAULT_SINK=$(pactl get-default-sink)
MONITOR_SINK="${DEFAULT_SINK}.monitor"
gpu-screen-recorder -w screen -o ~/Videos -r 90 -c mp4 -a "$MONITOR_SINK" -ac aac & >> $HOME/.gpu-screen-recorder.log
PID=$!
"$@"
kill -SIGINT $PID
wait $PID