diff options
author | Mountain Man <mmosmacs-dev@anu.tgwil.net> | 2023-04-09 18:20:35 -0400 |
---|---|---|
committer | Mountain Man <mmosmacs-dev@anu.tgwil.net> | 2023-04-09 18:20:35 -0400 |
commit | abcd8909298e5c601804c805be3f561be1f8273f (patch) | |
tree | f2094ac3f1b5b5a6269ca9db2cef7156b3ce48f8 | |
parent | Maximize frame in Early Init (diff) | |
download | mmosmacs-abcd8909298e5c601804c805be3f561be1f8273f.tar.gz mmosmacs-abcd8909298e5c601804c805be3f561be1f8273f.tar.bz2 mmosmacs-abcd8909298e5c601804c805be3f561be1f8273f.zip |
Set a black background in Early Init
Whoever decided to use white for everything deserve a stern talking-to.
Black should be the default background for everything.
-rw-r--r-- | early-init.el | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/early-init.el b/early-init.el index 9b5474f..37222a4 100644 --- a/early-init.el +++ b/early-init.el | |||
@@ -48,3 +48,13 @@ | |||
48 | (push '(ns-transparent-titlebar . t) default-frame-alist) | 48 | (push '(ns-transparent-titlebar . t) default-frame-alist) |
49 | (setq frame-inhibit-implied-resize t | 49 | (setq frame-inhibit-implied-resize t |
50 | frame-resize-pixelwise t) | 50 | frame-resize-pixelwise t) |
51 | |||
52 | |||
53 | ;; --------------------------------- | ||
54 | ;; Start with a black background | ||
55 | ;; ----------------------------- | ||
56 | ;; This is necessary to prevent eye | ||
57 | ;; damage | ||
58 | ;; --------------------------------- | ||
59 | |||
60 | (set-face-attribute 'default nil :background "#000000" :foreground "#FFFFFF") | ||