#!/bin/sh -e [ "$#" -ne 4 ] && echo "usage: replay.sh " && exit 1 active_sink="$(pactl get-default-sink).monitor" mkdir -p "$4" ./gpu-screen-recorder -w "$1" -c mp4 -f "$2" -a "$active_sink" -r "$3" -o "$4"