mirror of
https://repo.dec05eba.com/gpu-screen-recorder
synced 2026-03-31 17:17:16 +09:00
7 lines
322 B
Bash
Executable File
7 lines
322 B
Bash
Executable File
#!/bin/sh
|
|
|
|
window=$(xdotool selectwindow)
|
|
window_name=$(xdotool getwindowname "$window" || xdotool getwindowclassname "$window" || echo "Game")
|
|
window_name="$(echo "$window_name" | tr '/\\' '_')"
|
|
gpu-screen-recorder -w "$window" -f 60 -c mkv -a default_output -bm cbr -q 45000 -r 60 -o "$HOME/Videos/Replays/$window_name"
|