From 4de2d59f081d5aa463834d6e658f76faa2563fb4 Mon Sep 17 00:00:00 2001 From: Chris Cochrun Date: Mon, 15 Sep 2025 09:30:16 -0500 Subject: [PATCH] less transparency --- README.org | 7 ++++--- init.el | 6 +++--- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/README.org b/README.org index f342d696..b20e0dbb 100644 --- a/README.org +++ b/README.org @@ -135,9 +135,9 @@ In order to have this config work on both my desktop with regular joe-schmoe mon (defun chris/set-transparency () "Set the frame to be transparent but not the text" - (set-frame-parameter (selected-frame) 'alpha-background 85) - (add-to-list 'default-frame-alist '(alpha-background . 85)) - (add-to-list 'initial-frame-alist '(alpha-background . 85))) + (set-frame-parameter (selected-frame) 'alpha-background 95) + (add-to-list 'default-frame-alist '(alpha-background . 95)) + (add-to-list 'initial-frame-alist '(alpha-background . 95))) (if (daemonp) (add-hook 'after-make-frame-functions (lambda (frame) @@ -149,6 +149,7 @@ In order to have this config work on both my desktop with regular joe-schmoe mon #+end_src Then let's make sure line-numbers are relative and on. And let's turn on visual-line-mode globally. + #+begin_src emacs-lisp (setq display-line-numbers-type t) (global-display-line-numbers-mode +1) diff --git a/init.el b/init.el index 3540cef4..2c930094 100644 --- a/init.el +++ b/init.el @@ -41,9 +41,9 @@ (defun chris/set-transparency () "Set the frame to be transparent but not the text" - (set-frame-parameter (selected-frame) 'alpha-background 85) - (add-to-list 'default-frame-alist '(alpha-background . 85)) - (add-to-list 'initial-frame-alist '(alpha-background . 85))) + (set-frame-parameter (selected-frame) 'alpha-background 95) + (add-to-list 'default-frame-alist '(alpha-background . 95)) + (add-to-list 'initial-frame-alist '(alpha-background . 95))) (if (daemonp) (add-hook 'after-make-frame-functions (lambda (frame)