diff options
author | Ryan Kavanagh <rak@rak.ac> | 2022-11-27 18:22:17 -0500 |
---|---|---|
committer | Ryan Kavanagh <rak@rak.ac> | 2022-11-27 18:22:17 -0500 |
commit | 67e9ce6aee31f2a5ec36afd287e33bfcde74034a (patch) | |
tree | cc7ff2f2d48ee021ca5c2247e18830a9a7d1ae4f | |
parent | Merge remote-tracking branch 'rak-https/master' (diff) |
make emacs font smaller on openbsd
Diffstat (limited to '')
-rw-r--r-- | dot_emacs.tmpl (renamed from dot_emacs) | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/dot_emacs b/dot_emacs.tmpl index e6f222f..c655836 100644 --- a/dot_emacs +++ b/dot_emacs.tmpl @@ -39,7 +39,11 @@ face-font-family-alternatives)) :custom-face (default ((t (:family "Spleen 16x32" - :height 130 ; unit is 1/10 pt + {{ if (eq .chezmoi.os "openbsd") -}} + :height 80 ; unit is 1/10 pt + {{- else -}} + :height 130 ; unit is 1/10 pt + {{- end }} ))))) (if (string= (system-name) "demeter.rak.ac") |