about summary refs log tree commit diff
path: root/init/look-and-feel.el
diff options
context:
space:
mode:
authorVincent Ambo <tazjin@gmail.com>2018-01-04T22·22+0100
committerVincent Ambo <tazjin@gmail.com>2018-01-04T22·23+0100
commitf3b9126fa20c946325bad332ee2a48443feb4843 (patch)
treec72c36a7ad94b649ae751b003b0ff6cbb11b5e2e /init/look-and-feel.el
parent866d8996e3b5c6c71691726070fbd4719c1c8824 (diff)
chore(look-and-feel): Remove 4K display logic for stallo
Back to a normal screen!
Diffstat (limited to 'init/look-and-feel.el')
-rw-r--r--init/look-and-feel.el3
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)))