diff options
Diffstat (limited to 'init/look-and-feel.el')
-rw-r--r-- | init/look-and-feel.el | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/init/look-and-feel.el b/init/look-and-feel.el index 3229b85a4099..e40299c60282 100644 --- a/init/look-and-feel.el +++ b/init/look-and-feel.el @@ -19,8 +19,7 @@ ;; Configure editor fonts ;; Determine fontsize based on machine (4K display on stallo): -(letrec ((hostname (s-trim (f-read "/etc/hostname"))) - (font-size (if (equal hostname "stallo") 38 12)) +(letrec ((font-size 12) (font (format "Input Mono-%d" font-size))) (setq default-frame-alist `((font-backend . "xft") (font . ,font))) |