diff options
author | Vincent Ambo <tazjin@gmail.com> | 2018-01-04T22·22+0100 |
---|---|---|
committer | Vincent Ambo <tazjin@gmail.com> | 2018-01-04T22·23+0100 |
commit | f3b9126fa20c946325bad332ee2a48443feb4843 (patch) | |
tree | c72c36a7ad94b649ae751b003b0ff6cbb11b5e2e /init | |
parent | 866d8996e3b5c6c71691726070fbd4719c1c8824 (diff) |
chore(look-and-feel): Remove 4K display logic for stallo
Back to a normal screen!
Diffstat (limited to 'init')
-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))) |