dots-of-war/files/scripts/screenrecorder.sh
2020-10-30 22:02:38 +02:00

7 lines
164 B
Bash
Executable file

#! /bin/sh
[ -z "$1" ] && \
echo "usage: screenrecorder.sh <output-file-path>" && \
exit 1
ffmpeg -video_size 2560x1080 -framerate 25 -f x11grab -i :0.0 "$@"