6 lines
165 B
Bash
6 lines
165 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
video_path="$HOME/Videos"
|
||
|
mkdir -p "$video_path"
|
||
|
gpu-screen-recorder -w screen -f 60 -a "$(pactl get-default-sink).monitor" -c mp4 -r 30 -o "$video_path"
|