dotfiles/systemd/webcam.sh
2020-12-15 20:43:31 +01:00

8 lines
184 B
Bash
Executable file

#!/usr/bin/env bash
now=$(date +"%Y_%m_%d_%H_%M_%S")
path="$HOME/Pictures/hour-pics"
size="1280x720"
mkdir -p "$path"
streamer -q -f jpeg -s $size -o "$path"/"$now".jpeg -r 1
exit $?