This commit is contained in:
Chris Cochrun 2025-10-09 11:10:10 -05:00
parent 29e5e3e1a6
commit 2f4cf98dc5
2 changed files with 4 additions and 2 deletions

View file

@ -112,7 +112,8 @@ Let's start by making some basic ui changes like turning off the scrollbar, tool
(setq comp-deferred-compilation-deny-list nil)
(setq frame-resize-pixelwise t)
(set-frame-parameter nil 'undecorated t)
(set-frame-parameter (selected-frame) 'undecorated t)
(add-to-list 'default-frame-alist '(undecorated . t))
#+end_src
In order to have this config work on both my desktop with regular joe-schmoe monitors and my laptop with new-hotness HiDPI monitor, I will set the font size if my system is the laptop to much higher.

View file

@ -21,7 +21,8 @@
(setq comp-deferred-compilation-deny-list nil)
(setq frame-resize-pixelwise t)
(set-frame-parameter nil 'undecorated t)
(set-frame-parameter (selected-frame) 'undecorated t)
(add-to-list 'default-frame-alist '(undecorated . t))
(if (string-equal (system-name) "syl")
(defvar chris/default-font-size 120)