my dotz
2
fork

Configure Feed

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

reject serif, back to chromium, accept foot defaults

+10 -38
+1 -25
.config/foot/foot.ini
··· 1 - font = Libertinus Mono:size=14 1 + font = monospace:size=12 2 2 3 3 [scrollback] 4 4 lines = 50000 5 - 6 - # everforest/dark/hard 7 - [colors] 8 - alpha=1.0 9 - background=2b3339 10 - foreground=d3c6aa 11 - 12 - regular0=4b565c # black 13 - regular1=e67e80 # red 14 - regular2=a7c080 # green 15 - regular3=dbbc7f # yellow 16 - regular4=7fbbb3 # blue 17 - regular5=d699b6 # magenta 18 - regular6=83c092 # cyan 19 - regular7=d3c6aa # white 20 - 21 - bright0=4b565c # black 22 - bright1=e67e80 # red 23 - bright2=a7c080 # green 24 - bright3=dbbc7f # yellow 25 - bright4=7fbbb3 # blue 26 - bright5=d699b6 # magenta 27 - bright6=83c092 # cyan 28 - bright7=d3c6aa # white
+8
.config/jj/config.toml
··· 1 1 [user] 2 2 name = "jes olson" 3 3 email = "j3s@c3f.net" 4 + 5 + [template-aliases] 6 + # relative timestampz 7 + 'format_short_id(id)' = 'id.shortest(8)' 8 + 'format_timestamp(timestamp)' = 'timestamp.ago()' 9 + 10 + [ui] 11 + default-command = 'log'
+1 -1
bin/xdg-open
··· 1 1 #!/bin/sh 2 2 case "${1%%:*}" in 3 3 http|https) 4 - exec firefox "$1" 4 + exec chromium "$1" 5 5 ;; 6 6 *.pdf) 7 7 exec zathura "$1"
-12
bin/zora/xdg-open
··· 1 - #!/bin/sh 2 - case "${1%%:*}" in 3 - http|https) 4 - exec chromium "$1" 5 - ;; 6 - *.pdf) 7 - exec zathura "$1" 8 - ;; 9 - *) 10 - exec /usr/bin/xdg-open "$@" 11 - ;; 12 - esac