From f3b9126fa20c946325bad332ee2a48443feb4843 Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Thu, 4 Jan 2018 23:22:51 +0100 Subject: [PATCH] chore(look-and-feel): Remove 4K display logic for stallo Back to a normal screen! --- init/look-and-feel.el | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/init/look-and-feel.el b/init/look-and-feel.el index 3229b85a4..e40299c60 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)))