dots


commit
9668ace
parent
1ddbf7b
author
xxwhirlpool
date
2026-03-23 15:10:24 -0400 EDT
blah
6 files changed,  +15, -10
M .gitignore
+1, -0
1@@ -34,3 +34,4 @@ config/.local/bin/pylsp
2 config/.local/bin/kaomoji.sh
3 config/.local/bin/quote
4 config/.local/bin/quoterandom
5+config/.config/plexclip/config.toml
M config/.bashrc-pc
+2, -0
 1@@ -109,7 +109,9 @@ alias freeze="freeze -c user"
 2 alias glow="glow -p"
 3 alias qrcode="qrencode -t ansiutf8"
 4 alias ffmpeg="ffmpeg -hide_banner"
 5+alias open="xdg-open"
 6 alias c="clear"
 7+alias unfuckwifi="sudo systemctl restart NetworkManager"
 8  
 9 # weather stuff
10 alias wttr="curl https://wttr.in/nyc?F0ASu"
M config/.config/shmoji/emojis.txt
+1, -0
1@@ -3572,3 +3572,4 @@
2 💽 minidisc
3 🫶 heart hands
4 🥲 single tear smile
5+🫵 index pointing at viewer
A config/.local/bin/md2page
+10, -0
 1@@ -0,0 +1,10 @@
 2+#!/usr/bin/env bash
 3+
 4+FILE=$(gum file)
 5+HTML="$HOME/Scripts/pandoc/md2html.html"
 6+
 7+if [[ -f "$FILE" ]]; then
 8+	pandoc --standalone "$FILE" --template="$HTML" --no-highlight --wrap=none -o "${FILE%.*}.html"
 9+else
10+	exit 1
11+fi
M config/.local/bin/vidtools
+1, -1
1@@ -6,7 +6,7 @@ avi2mkv() {
2 
3 any2hevc() {
4 	shopt -s nullglob
5-	for f in *.{mkv,mp4}; do ffmpeg -hwaccel cuda -hwaccel_output_format cuda -i "$f" -c:v hevc_nvenc -qmin 24 -qmax 24 -vtag hvc1 -profile main -preset slow -rc vbr_hq -c:a copy -c:s copy -map 0 "${f%.*} HEVC.mkv" || break; done
6+	for f in *.{mkv,mp4,ts}; do ffmpeg -hwaccel cuda -hwaccel_output_format cuda -i "$f" -c:v hevc_nvenc -qmin 24 -qmax 24 -vtag hvc1 -profile main -preset slow -rc vbr_hq -c:a copy -c:s copy -map 0 "${f%.*} HEVC.mkv" || break; done
7 }
8 
9 vid2frames() {
D scripts/Scripts/pandoc/md2page
+0, -9
 1@@ -1,9 +0,0 @@
 2-#!/usr/bin/env bash
 3-
 4-FILE=$(gum input --placeholder "without an extension")
 5-
 6-HTML="./md2html.html"
 7-
 8-CSS="./md2html.css"
 9-
10-pandoc --standalone "$FILE.md" --template=$HTML --no-highlight --wrap=none -o "$FILE.html"