Dynamic default face height

Attempt to base default face height on resolution.
This commit is contained in:
Seth Morabito 2022-07-07 14:14:20 -07:00
parent 77120b3094
commit 99ab721ca0
1 changed files with 3 additions and 1 deletions

View File

@ -490,7 +490,9 @@ ignored.
#+BEGIN_SRC emacs-lisp
(when window-system
(let* ((height 100)
(let* ((height (if (> (display-pixel-height) 1200)
180
100))
(families '("Hack"
"Fira Code"
"Roboto Mono"