From 88e7aeae2c20dc53fe78d1867416524147c3c7ce Mon Sep 17 00:00:00 2001 From: coolneng Date: Sat, 17 Sep 2022 12:33:44 +0200 Subject: [PATCH] Modify the splash screen actions --- +ui.el | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/+ui.el b/+ui.el index 4497a47..053a4c3 100644 --- a/+ui.el +++ b/+ui.el @@ -40,3 +40,19 @@ (set-popup-rule! "^\\*vterm" :size 0.1 :vslot -4 :select t :quit nil :ttl 0) ;; Show matching parenthesis on the minibuffer (after! smartparens (show-smartparens-global-mode t)) +;; Modify the splash screen actions +(assoc-delete-all "Jump to bookmark" +doom-dashboard-menu-sections) +(assoc-delete-all "Open private configuration" +doom-dashboard-menu-sections) +(assoc-delete-all "Open documentation" +doom-dashboard-menu-sections) +(add-to-list '+doom-dashboard-menu-sections + '("Open email client" + :icon (all-the-icons-octicon "mail" :face 'doom-dashboard-menu-title) + :when (featurep! :email mu4e) + :face (:inherit (doom-dashboard-menu-title bold)) + :action =mu4e) t) +(add-to-list '+doom-dashboard-menu-sections + '("RSS reader" + :icon (all-the-icons-octicon "rss" :face 'doom-dashboard-menu-title) + :when (featurep! :app rss) + :face (:inherit (doom-dashboard-menu-title bold)) + :action =rss) t)