mirror of
https://repo.dec05eba.com/gpu-screen-recorder
synced 2026-03-31 17:17:16 +09:00
6 lines
197 B
Bash
Executable File
6 lines
197 B
Bash
Executable File
#!/bin/sh
|
|
|
|
pidof -q gpu-screen-recorder && exit 1
|
|
video="$HOME/Videos/$(date +"Video_%Y-%m-%d_%H-%M-%S.mp4")"
|
|
gpu-screen-recorder -w screen -f 60 -a "$(pactl get-default-sink).monitor" -o "$video"
|