dots


commit
cb00559
parent
cbb3588
author
xxwhirlpool
date
2025-11-20 19:55:22 -0500 EST
idk
3 files changed,  +5, -5
M config/.config/micro/settings.json
+3, -3
 1@@ -1,8 +1,8 @@
 2 {
 3     "colorscheme": "catppuccin-frappe",
 4-    "softwrap": true,
 5-    "wordwrap": true,
 6+    "lsp.formatOnSave": true,
 7     "lsp.server": "python=pyls,go=gopls,typescript=deno lsp,nix=nixd",
 8     "lsp.tabcompletion": true,
 9-    "lsp.formatOnSave": true
10+    "softwrap": true,
11+    "wordwrap": true
12 }
M config/.local/bin/today
+1, -1
1@@ -8,5 +8,5 @@ fi
2 # if you also want time then supply `time` arg:
3 # today time
4 if [ "$1" == "time" ]; then
5-	echo -e "$(date '+%Y-%m-%d_%I:%M%p')"
6+	echo -e "$(date '+%Y-%m-%d__%I_%M%p')"
7 fi
M config/.local/bin/webcamimg
+1, -1
1@@ -4,6 +4,6 @@ PICPATH="/home/kat/Pictures/Camera/webcam"
2 
3 echo "taking pictures!" | gum style --foreground "#f4b8e4" --border none
4 
5-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
6+ffmpeg -f video4linux2 -i /dev/video0 -vframes 2 -video_size 1920x1080 "$PICPATH/webcam_pic_$(today time)_%3d.jpeg" -hide_banner -loglevel error
7 
8 echo "done!" | gum style --foreground "#f4b8e4" --border none