dots


commit
24c068b
parent
7316847
author
xxwhirlpool
date
2025-09-11 00:44:51 -0400 EDT
more
5 files changed,  +8, -7
M .gitignore
+1, -0
1@@ -21,3 +21,4 @@ config/.config/vdirsyncer/contacts/
2 config/.config/vdirsyncer/status/
3 config/.config/vdirsyncer/calendar/*
4 config/.config/vdirsyncer/calendar_rockness/*
5+config/.config/vdirsyncer/calendars/kat/katcal/*
R config/.config/gallery-dl/gallery-dl.conf => config/.config/gallery-dl/config.json
+0, -0
M config/.config/khal/config
+4, -4
 1@@ -1,6 +1,6 @@
 2 [default]
 3 
 4-default_calendar = kat
 5+default_calendar = katcal
 6 highlight_event_days = true
 7 
 8 [view]
 9@@ -11,13 +11,13 @@ unicode_symbols = false
10 local_timezone = America/New_York
11 default_timezone = America/New_York
12 timeformat = %I:%m
13-dateformat = %A
14+dateformat = %Y-%m-%d
15 longdateformat = %Y-%m-%d
16 
17 [calendars]
18 
19-[[kat]]
20-path = ~/.config/vdirsyncer/calendars/kat/
21+[[katcal]]
22+path = ~/.config/vdirsyncer/calendars/kat/katcal
23 
24 [[rockness]]
25 path = ~/.config/vdirsyncer/calendar_rockness/
M config/.config/vdirsyncer/config
+2, -2
 1@@ -26,12 +26,12 @@ metadata = ["displayname"]
 2 
 3 [storage katcal_local]
 4 type = "filesystem"
 5-path = "~/.config/vdirsyncer/calendar"
 6+path = "~/.config/vdirsyncer/calendars/kat"
 7 fileext = ".ics"
 8 
 9 [storage katcal_remote]
10 type = "caldav"
11-url = "https://calendar.girlonthemoon.xyz/springpool/9f677c31-9924-4a76-8763-73fd3025acdb/"
12+url = "https://calendar.girlonthemoon.xyz/springpool/katcal/"
13 username = "springpool"
14 password.fetch = ["command", "cat", "~/.vcardpass"]
15 
M config/.local/bin/vidtools
+1, -1
1@@ -5,7 +5,7 @@ avi2mkv() {
2 }
3 
4 any2hevc() {
5-	for f in *.mkv; do ffmpeg -hwaccel cuda -hwaccel_output_format cuda -i "$f" -c:v hevc_nvenc -vtag hvc1 -profile main -preset slow -rc vbr_hq -c:a copy -c:s copy -map 0 "${f%.*} HEVC.mkv"; done
6+	for f in *.mkv; 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"; done
7 }
8 
9 vid2frames() {