From 8fa3140253665c9b0ece9acbf14f3e56de895416 Mon Sep 17 00:00:00 2001 From: William Carroll Date: Thu, 2 Apr 2020 14:34:31 +0100 Subject: [PATCH] Increase default font size for laptop I'm working off of my laptop but I'm using my 4k monitor. The expression that sets `fonts/size` could be more sophisticated and detect this, but for now, I'm just bumping up the size. --- emacs/.emacs.d/wpc/fonts.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/emacs/.emacs.d/wpc/fonts.el b/emacs/.emacs.d/wpc/fonts.el index 3c6fe6bfe..1266e0053 100644 --- a/emacs/.emacs.d/wpc/fonts.el +++ b/emacs/.emacs.d/wpc/fonts.el @@ -30,7 +30,7 @@ (defconst fonts/size (pcase (device/classify) - ('work-laptop "9") + ('work-laptop "11") ('work-desktop "8")) "My preferred default font-size, which is device specific.")