14 lines
657 B
Bash
Executable File
14 lines
657 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# This script should be passed to gpu-screen-recorder with the -sc option, for example:
|
|
# gpu-screen-recorder -w screen -f 60 -a default_output -r 60 -sc scripts/record-save-application-name.sh -c mp4 -o "$HOME/Videos"
|
|
|
|
window=$(xdotool getwindowfocus)
|
|
window_name=$(xdotool getwindowname "$window" || xdotool getwindowclassname "$window" || echo "Game")
|
|
window_name="$(echo "$window_name" | tr '/\\' '_')"
|
|
|
|
video_dir="$HOME/Videos/Replays/$window_name"
|
|
mkdir -p "$video_dir"
|
|
video="$video_dir/$(date +"${window_name}_%Y-%m-%d_%H-%M-%S.mp4")"
|
|
mv "$1" "$video"
|
|
sleep 0.5 && notify-send -t 2000 -u low "GPU Screen Recorder" "Replay saved to $video" |