the dots
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

more

katproto.girlonthemoon.xyz 24c068ba 73168471

verified
+8 -7
+1
.gitignore
··· 21 21 config/.config/vdirsyncer/status/ 22 22 config/.config/vdirsyncer/calendar/* 23 23 config/.config/vdirsyncer/calendar_rockness/* 24 + config/.config/vdirsyncer/calendars/kat/katcal/*
config/.config/gallery-dl/gallery-dl.conf config/.config/gallery-dl/config.json
+4 -4
config/.config/khal/config
··· 1 1 [default] 2 2 3 - default_calendar = kat 3 + default_calendar = katcal 4 4 highlight_event_days = true 5 5 6 6 [view] ··· 11 11 local_timezone = America/New_York 12 12 default_timezone = America/New_York 13 13 timeformat = %I:%m 14 - dateformat = %A 14 + dateformat = %Y-%m-%d 15 15 longdateformat = %Y-%m-%d 16 16 17 17 [calendars] 18 18 19 - [[kat]] 20 - path = ~/.config/vdirsyncer/calendars/kat/ 19 + [[katcal]] 20 + path = ~/.config/vdirsyncer/calendars/kat/katcal 21 21 22 22 [[rockness]] 23 23 path = ~/.config/vdirsyncer/calendar_rockness/
+2 -2
config/.config/vdirsyncer/config
··· 26 26 27 27 [storage katcal_local] 28 28 type = "filesystem" 29 - path = "~/.config/vdirsyncer/calendar" 29 + path = "~/.config/vdirsyncer/calendars/kat" 30 30 fileext = ".ics" 31 31 32 32 [storage katcal_remote] 33 33 type = "caldav" 34 - url = "https://calendar.girlonthemoon.xyz/springpool/9f677c31-9924-4a76-8763-73fd3025acdb/" 34 + url = "https://calendar.girlonthemoon.xyz/springpool/katcal/" 35 35 username = "springpool" 36 36 password.fetch = ["command", "cat", "~/.vcardpass"] 37 37
+1 -1
config/.local/bin/vidtools
··· 5 5 } 6 6 7 7 any2hevc() { 8 - 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 8 + 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 9 9 } 10 10 11 11 vid2frames() {