mirror of
https://repo.dec05eba.com/gpu-screen-recorder
synced 2026-03-31 09:07:13 +09:00
6 lines
273 B
Bash
Executable File
6 lines
273 B
Bash
Executable File
#!/bin/sh
|
|
|
|
window=$(xdotool selectwindow)
|
|
window_name=$(xdotool getwindowclassname "$window" || xdotool getwindowname "$window" || echo "game")
|
|
gpu-screen-recorder -w "$window" -f 60 -c mkv -a "$(pactl get-default-sink).monitor" -r 60 -o "$HOME/Videos/replay/$window_name"
|