diff options
author | Mountain Man <43313373+MountainMan1312@users.noreply.github.com> | 2023-11-06 02:49:32 -0500 |
---|---|---|
committer | Mountain Man <43313373+MountainMan1312@users.noreply.github.com> | 2023-11-06 02:49:32 -0500 |
commit | 498ac6e7e9a2cda0f0a7e8dcc4cb69fec33a37b8 (patch) | |
tree | ee7133bba89cad12bc4fff3ff068ccc6c33a8afd /init.el | |
parent | Show :LOGBOOK: items in org-agenda view (diff) | |
download | mmosmacs-498ac6e7e9a2cda0f0a7e8dcc4cb69fec33a37b8.tar.gz mmosmacs-498ac6e7e9a2cda0f0a7e8dcc4cb69fec33a37b8.tar.bz2 mmosmacs-498ac6e7e9a2cda0f0a7e8dcc4cb69fec33a37b8.zip |
Dim inactive buffers
Diffstat (limited to 'init.el')
-rw-r--r-- | init.el | 18 |
1 files changed, 18 insertions, 0 deletions
@@ -397,6 +397,24 @@ | |||
397 | 397 | ||
398 | 398 | ||
399 | ;; --------------------------------- | 399 | ;; --------------------------------- |
400 | ;; ADHD Accessibility | ||
401 | ;; ------------------ | ||
402 | ;; I have ADHD, real bad. All this | ||
403 | ;; *shit* going on in Emacs can be | ||
404 | ;; detrimental to my attention. | ||
405 | ;; | ||
406 | ;; Make it easier to focus... | ||
407 | ;; --------------------------------- | ||
408 | |||
409 | (use-package auto-dim-other-buffers | ||
410 | :straight t | ||
411 | :config (setq auto-dim-other-buffers-dim-on-focus-out t | ||
412 | auto-dim-other-buffers-dim-on-switch-to-minibuffer t)) | ||
413 | (set-face-attribute 'auto-dim-other-buffers-face nil :background "#000") | ||
414 | (set-face-attribute 'auto-dim-other-buffers-hide-face nil :background "#000" :foreground "#000") | ||
415 | |||
416 | |||
417 | ;; --------------------------------- | ||
400 | ;; Hide text for privacy | 418 | ;; Hide text for privacy |
401 | ;; --------------------- | 419 | ;; --------------------- |
402 | ;; Sometimes you just don't want | 420 | ;; Sometimes you just don't want |