mirror of
https://github.com/elkowar/dots-of-war.git
synced 2025-04-05 14:23:31 +00:00
7 lines
164 B
Bash
Executable file
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 "$@"
|