diff options
Diffstat (limited to 'interactive.sh')
-rwxr-xr-x | interactive.sh | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/interactive.sh b/interactive.sh deleted file mode 100755 index c02e7e9..0000000 --- a/interactive.sh +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/sh -e - -selected_audio_input="$(pactl get-default-sink).monitor" - -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 "$selected_audio_input" -o "$output_file_name" |