From ac6480b9ac71d4931f9efc136ead406ee81a4d46 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Furkan=20Karata=C5=9F?= Date: Fri, 5 Mar 2021 15:30:44 +0300 Subject: [PATCH] Fix icon for week agenda items --- dashboard-widgets.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dashboard-widgets.el b/dashboard-widgets.el index c293affd..f1d0c974 100644 --- a/dashboard-widgets.el +++ b/dashboard-widgets.el @@ -627,7 +627,8 @@ WIDGET-PARAMS are passed to the \"widget-create\" function." (file-directory-p path)) (all-the-icons-icon-for-dir path nil "") (cond - ((string-equal ,section-name "Agenda for today:") + ((or (string-equal ,section-name "Agenda for today:") + (string-equal ,section-name "Agenda for the coming week:")) (all-the-icons-octicon "primitive-dot" :height 1.0 :v-adjust 0.01)) ((file-remote-p path) (all-the-icons-octicon "radio-tower" :height 1.0 :v-adjust 0.01))