Browse Source

finxed bug with theme toggler

master
Marc Pohling 4 years ago
parent
commit
0e0ca516df
1 changed files with 4 additions and 2 deletions
  1. 6
      init.org

6
init.org

@ -174,10 +174,12 @@ Some windows specific stuff
(when *windows*
(if (eq (car custom-enabled-themes) 'tango-dark)
(progn (disable-theme 'tango-dark)
(enable-theme 'tango))
(load-theme 'tango))
(progn
(disable-theme 'tango)
(enable-theme 'tango-dark)))))
(load-theme 'tango-dark)))))
(bind-key "C-c t" 'my/toggle-theme)
#+END_SRC
Windows Theme:

Loading…
Cancel
Save