diff options
author | Amin Bandali <bandali@gnu.org> | 2019-09-14 09:44:43 -0400 |
---|---|---|
committer | Amin Bandali <bandali@gnu.org> | 2019-09-14 09:44:43 -0400 |
commit | e003a4093636de8eaad7b7e4144bfbd7230dd021 (patch) | |
tree | e1611bd98ba9b75696dfeb47f39a1047e246d164 | |
parent | 2e54e9db1def0a2624775458b8e7f91689bedc57 (diff) | |
download | configs-e003a4093636de8eaad7b7e4144bfbd7230dd021.tar.gz configs-e003a4093636de8eaad7b7e4144bfbd7230dd021.tar.xz configs-e003a4093636de8eaad7b7e4144bfbd7230dd021.zip |
emacs: remove exwm-systemtray--refresh call from my theme swithcers
-rw-r--r-- | .emacs.d/init.el | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/.emacs.d/init.el b/.emacs.d/init.el index 13350c7..55e63b7 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -1559,8 +1559,7 @@ This function is intended for use with `ivy-ignore-buffers'." (load-theme 'tangomod t) ;; (sml/apply-theme 'automatic) (font-lock-remove-keywords - 'org-mode b/org-mode-font-lock-keywords) - (exwm-systemtray--refresh)) + 'org-mode b/org-mode-font-lock-keywords)) (defun b/lights-off () "Go dark." @@ -1569,8 +1568,7 @@ This function is intended for use with `ivy-ignore-buffers'." (load-theme 'doom-one t) ;; (sml/apply-theme 'automatic) (font-lock-add-keywords - 'org-mode b/org-mode-font-lock-keywords t) - (exwm-systemtray--refresh)) + 'org-mode b/org-mode-font-lock-keywords t)) (bind-keys ("C-c t d" . b/lights-off) |