Adapt to the upstream change in the icon font
This commit is contained in:
parent
b6e0a698e6
commit
27a2755eb4
14
+ui.el
14
+ui.el
|
@ -39,7 +39,7 @@
|
||||||
;; Modify the splash screen actions
|
;; Modify the splash screen actions
|
||||||
(setq +doom-dashboard-menu-sections
|
(setq +doom-dashboard-menu-sections
|
||||||
'(("Reload last session"
|
'(("Reload last session"
|
||||||
:icon (all-the-icons-octicon "history" :face 'doom-dashboard-menu-title)
|
:icon (nerd-icons-octicon "nf-oct-history" :face 'doom-dashboard-menu-title)
|
||||||
:when (cond ((modulep! :ui workspaces)
|
:when (cond ((modulep! :ui workspaces)
|
||||||
(file-exists-p (expand-file-name persp-auto-save-fname persp-save-dir)))
|
(file-exists-p (expand-file-name persp-auto-save-fname persp-save-dir)))
|
||||||
((require 'desktop nil t)
|
((require 'desktop nil t)
|
||||||
|
@ -47,24 +47,24 @@
|
||||||
:face (:inherit (doom-dashboard-menu-title bold))
|
:face (:inherit (doom-dashboard-menu-title bold))
|
||||||
:action doom/quickload-session)
|
:action doom/quickload-session)
|
||||||
("Open org-agenda"
|
("Open org-agenda"
|
||||||
:icon (all-the-icons-octicon "calendar" :face 'doom-dashboard-menu-title)
|
:icon (nerd-icons-octicon "nf-oct-calendar" :face 'doom-dashboard-menu-title)
|
||||||
:when (fboundp 'org-agenda)
|
:when (fboundp 'org-agenda)
|
||||||
:action org-agenda)
|
:action org-agenda)
|
||||||
("Recently opened files"
|
("Recently opened files"
|
||||||
:icon (all-the-icons-octicon "file-text" :face 'doom-dashboard-menu-title)
|
:icon (nerd-icons-faicon "nf-fa-file_text" :face 'doom-dashboard-menu-title)
|
||||||
:action recentf-open-files)
|
:action recentf-open-files)
|
||||||
("Open email client"
|
("Open email client"
|
||||||
:icon (all-the-icons-octicon "mail" :face 'doom-dashboard-menu-title)
|
:icon (nerd-icons-octicon "nf-oct-mail" :face 'doom-dashboard-menu-title)
|
||||||
:when (featurep! :email mu4e)
|
:when (featurep! :email mu4e)
|
||||||
:face (:inherit (doom-dashboard-menu-title bold))
|
:face (:inherit (doom-dashboard-menu-title bold))
|
||||||
:action =mu4e)
|
:action =mu4e)
|
||||||
("RSS reader"
|
("RSS reader"
|
||||||
:icon (all-the-icons-octicon "rss" :face 'doom-dashboard-menu-title)
|
:icon (nerd-icons-octicon "nf-oct-rss" :face 'doom-dashboard-menu-title)
|
||||||
:when (featurep! :app rss)
|
:when (featurep! :app rss)
|
||||||
:face (:inherit (doom-dashboard-menu-title bold))
|
:face (:inherit (doom-dashboard-menu-title bold))
|
||||||
:action =rss)
|
:action =rss)
|
||||||
("Read saved articles"
|
("Read saved articles"
|
||||||
:icon (all-the-icons-octicon "book" :face 'doom-dashboard-menu-title)
|
:icon (nerd-icons-octicon "nf-oct-book" :face 'doom-dashboard-menu-title)
|
||||||
:face (:inherit (doom-dashboard-menu-title bold))
|
:face (:inherit (doom-dashboard-menu-title bold))
|
||||||
:action =wallabag)))
|
:action =wallabag)))
|
||||||
;; Restore previous session without confirmation
|
;; Restore previous session without confirmation
|
||||||
|
@ -74,6 +74,6 @@
|
||||||
(doom-load-session)
|
(doom-load-session)
|
||||||
(message "Session restored. Welcome back."))
|
(message "Session restored. Welcome back."))
|
||||||
;; Decrease size of icons in the modeline
|
;; Decrease size of icons in the modeline
|
||||||
(setq all-the-icons-scale-factor 1.0)
|
(setq nerd-icons-scale-factor 1.0)
|
||||||
;; Increase size of the PlatformIO compilation buffer
|
;; Increase size of the PlatformIO compilation buffer
|
||||||
(set-popup-rule! "*platformio*" :size 0.25 :vslot -4 :select t :quit t :ttl 0)
|
(set-popup-rule! "*platformio*" :size 0.25 :vslot -4 :select t :quit t :ttl 0)
|
||||||
|
|
Loading…
Reference in New Issue