blob: bfaaae04ac53b0e3e1573467f99ee6951af47bd0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/bin/sh -e
echo "Select a window to record"
window_id=$(xdotool selectwindow)
echo -n "Enter video fps: "
read fps
echo -n "Enter output file name: "
read output_file_name
output_dir=$(dirname "$output_file_name")
mkdir -p "$output_dir"
gpu-screen-recorder -w "$window_id" -c mp4 -f "$fps" -a default_output -o "$output_file_name"
|