dots


commit
3f76aaf
parent
5a3d0b4
author
xxwhirlpool
date
2025-08-22 11:52:42 -0400 EDT
webcamimg
1 files changed,  +9, -0
A config/.local/bin/webcamimg
+9, -0
 1@@ -0,0 +1,9 @@
 2+#!/bin/bash
 3+
 4+PICPATH="/home/kat/Pictures/Camera/webcam"
 5+
 6+echo "taking pictures!" | gum style --foreground "#f4b8e4" --border none
 7+
 8+ffmpeg -f video4linux2 -i /dev/video0 -vframes 2 -video_size 1920x1080 "$PICPATH/webcam_pic_$(date '+%a__%b%d__%H_%M_%S')%3d.jpeg" -hide_banner -loglevel error
 9+
10+echo "done!" | gum style --foreground "#f4b8e4" --border none