mirror of
https://repo.dec05eba.com/gpu-screen-recorder
synced 2026-03-31 17:17:16 +09:00
7 lines
183 B
Bash
Executable File
7 lines
183 B
Bash
Executable File
#!/bin/sh
|
|
|
|
pidof -q gpu-screen-recorder && exit 0
|
|
video_path="$HOME/Videos"
|
|
mkdir -p "$video_path"
|
|
gpu-screen-recorder -w screen -f 60 -a default_output -c mkv -r 30 -o "$video_path"
|