7 lines
359 B
Bash
Executable File
7 lines
359 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
killall -SIGINT gpu-screen-recorder && sleep 0.5 && notify-send -t 1500 -u low 'GPU Screen Recorder' 'Stopped recording' && exit 0;
|
|
video="$HOME/Videos/$(date +"Video_%Y-%m-%d_%H-%M-%S.mp4")"
|
|
notify-send -t 1500 -u low 'GPU Screen Recorder' "Started recording video to $video"
|
|
gpu-screen-recorder -w screen -f 60 -a "default_output" -o "$video"
|