mirror of
https://github.com/elkowar/dots-of-war.git
synced 2024-11-06 11:22:23 +00:00
8 lines
167 B
Bash
8 lines
167 B
Bash
|
#!/bin/dash
|
||
|
if [ -z "$1" ]; then
|
||
|
echo "usage: screenrecorder.sh <output-file-path>"
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
ffmpeg -video_size 2560x1080 -framerate 25 -f x11grab -i :0.0 "$1"
|