Move scripts to script dir, add youtube-hls-stream script, fix twitch stream script

This commit is contained in:
dec05eba
2022-09-19 16:19:41 +02:00
parent 59b730a806
commit 85cd5a9d11
9 changed files with 18 additions and 5 deletions

View File

@@ -0,0 +1,9 @@
#!/bin/sh -e
killall -INT gpu-screen-recorder && notify-send -u low 'GPU Screen Recorder' 'Stopped recording' && exit 0;
window=$(xdotool selectwindow)
active_sink="$(pactl get-default-sink).monitor"
mkdir -p "$HOME/Videos"
video="$HOME/Videos/$(date +"Video_%Y-%m-%d_%H-%M-%S.mp4")"
notify-send -u low 'GPU Screen Recorder' "Started recording video to $video"
gpu-screen-recorder -w "$window" -c mp4 -f 60 -a "$active_sink" -o "$video"