mirror of
https://github.com/Stunkymonkey/dotfiles.git
synced 2025-05-24 02:54:40 +02:00
9 lines
241 B
Bash
Executable file
9 lines
241 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
|
|
fswebcam --no-banner -r $size -S 15 "$path"/"$now".jpeg
|
|
exit $?
|