summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--elchemy-user.el3
-rw-r--r--elchemy-util.el3
2 files changed, 4 insertions, 2 deletions
diff --git a/elchemy-user.el b/elchemy-user.el
index 1d86114..adaff4d 100644
--- a/elchemy-user.el
+++ b/elchemy-user.el
@@ -32,7 +32,8 @@
elchemy/dashboard-splash "assets/splash.png"
elchemy/dashboard-agenda-titles '(#("TODO" 0 4 (fontify t face (:foreground "red")))
#("STRT" 0 4 (fontify t face (:foreground "dark cyan")))
- #("WAIT" 0 4 (fontify t face (:foreground "orange"))))
+ #("WAIT" 0 4 (fontify t face (:foreground "orange")))
+ #("CYCL" 0 4 (fontify t face (:foreground "silver"))))
elchemy/schedule-lookahead 7)
;; Modeline
diff --git a/elchemy-util.el b/elchemy-util.el
index 4613d64..832d039 100644
--- a/elchemy-util.el
+++ b/elchemy-util.el
@@ -40,7 +40,7 @@
(cond
((find-font (font-spec :name "FixedrSys Light 2x"))
(set-frame-font "FixederSys Light 2x-14:antialias=none")))
- (set-face-attribute 'default nil :height 140)
+ (set-face-attribute 'default nil :height 100)
(if (get-buffer "*Dashboard*")
(switch-to-buffer "*Dashboard*"))))
@@ -55,5 +55,6 @@
(add-to-list 'default-frame-alist '(fullscreen . maximized))
(add-hook 'after-make-frame-functions 'elchemy/my-frame-config)
(add-hook 'after-init-hook 'elchemy/my-frame-config)
+(custom-set-faces '(default ((t (:height 100)))))
(provide 'elchemy-util)