From abcd8909298e5c601804c805be3f561be1f8273f Mon Sep 17 00:00:00 2001 From: Mountain Man Date: Sun, 9 Apr 2023 18:20:35 -0400 Subject: 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. --- early-init.el | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'early-init.el') 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 @@ (push '(ns-transparent-titlebar . t) default-frame-alist) (setq frame-inhibit-implied-resize t frame-resize-pixelwise t) + + +;; --------------------------------- +;; Start with a black background +;; ----------------------------- +;; This is necessary to prevent eye +;; damage +;; --------------------------------- + +(set-face-attribute 'default nil :background "#000000" :foreground "#FFFFFF") -- cgit v1.2.3