reject serif, back to chromium, accept foot defaults
jes olson j3s@c3f.net
Mon, 14 Aug 2023 13:38:02 -0500
4 files changed,
10 insertions(+),
38 deletions(-)
M
.config/foot/foot.ini
→
.config/foot/foot.ini
@@ -1,28 +1,4 @@
-font = Libertinus Mono:size=14 +font = monospace:size=12 [scrollback] lines = 50000 - -# everforest/dark/hard -[colors] -alpha=1.0 -background=2b3339 -foreground=d3c6aa - -regular0=4b565c # black -regular1=e67e80 # red -regular2=a7c080 # green -regular3=dbbc7f # yellow -regular4=7fbbb3 # blue -regular5=d699b6 # magenta -regular6=83c092 # cyan -regular7=d3c6aa # white - -bright0=4b565c # black -bright1=e67e80 # red -bright2=a7c080 # green -bright3=dbbc7f # yellow -bright4=7fbbb3 # blue -bright5=d699b6 # magenta -bright6=83c092 # cyan -bright7=d3c6aa # white
M
.config/jj/config.toml
→
.config/jj/config.toml
@@ -1,3 +1,11 @@
[user] name = "jes olson" email = "j3s@c3f.net" + +[template-aliases] +# relative timestampz +'format_short_id(id)' = 'id.shortest(8)' +'format_timestamp(timestamp)' = 'timestamp.ago()' + +[ui] +default-command = 'log'
M
bin/xdg-open
→
bin/xdg-open
@@ -1,7 +1,7 @@
#!/bin/sh case "${1%%:*}" in http|https) - exec firefox "$1" + exec chromium "$1" ;; *.pdf) exec zathura "$1"
D
bin/zora/xdg-open
@@ -1,12 +0,0 @@
-#!/bin/sh -case "${1%%:*}" in - http|https) - exec chromium "$1" - ;; - *.pdf) - exec zathura "$1" - ;; - *) - exec /usr/bin/xdg-open "$@" - ;; -esac