From a7c4503c31f36e30143e81355849d87da4f56960 Mon Sep 17 00:00:00 2001 From: Aaron Bieber Date: Wed, 14 Apr 2021 08:43:15 -0600 Subject: [PATCH] use mu4e speedbar, add rss for index.org of notes --- .config/rofi/config.rasi | 7 +++++++ .emacs.d/readme.org | 15 +++++++++++++-- 2 files changed, 20 insertions(+), 2 deletions(-) create mode 100644 .config/rofi/config.rasi diff --git a/.config/rofi/config.rasi b/.config/rofi/config.rasi new file mode 100644 index 0000000..fefc250 --- /dev/null +++ b/.config/rofi/config.rasi @@ -0,0 +1,7 @@ +configuration { + modi: "run,bw:rofi-bw,mpc:rofi-mpc,vmctl:rofi-vmctl,window,ssh"; + color-normal: "#99aab9, #eeeeff, #99aab9, #798a99, #eeeeff"; + color-urgent: "#fdf6e3, #dc322f, #eee8d5, #dc322f, #fdf6e3"; + color-active: "#798a99, #fffa06, #99aab9, #99aab9, #fffa06"; + color-window: "#798a99, #99aab9, #99aab9"; +} diff --git a/.emacs.d/readme.org b/.emacs.d/readme.org index 3c3786b..fc15562 100644 --- a/.emacs.d/readme.org +++ b/.emacs.d/readme.org @@ -1085,10 +1085,11 @@ Some go tools use this. (progn (load "/usr/local/share/emacs/site-lisp/mu4e/mu4e.el") (require 'mu4e) - + (require 'mu4e-speedbar) (require 'org-mu4e) (setq mail-user-agent 'mu4e-user-agent mu4e-get-mail-command "mbsync fastmail" + mu4e-mu-home (expand-file-name "~/.mu") ;;mu4e-update-interval 420 mu4e-compose-context-policy nil mu4e-context-policy 'pick-first @@ -1170,7 +1171,7 @@ I publish some of my notes [[https://suah.dev/p][on suah.dev/p]]. Also some reci #+begin_src emacs-lisp (setq my-org-publish-alist - '(("notes" :components ("org-notes" "notes-static")) + '(("notes" :components ("org-notes" "notes-static" "notes-rss")) ("deftly" :components ("deftly-blog" "deftly-static")) ("ohmyksh" :components ("ohmy-web" "ohmy-static")) ("org-notes" @@ -1242,6 +1243,16 @@ I publish some of my notes [[https://suah.dev/p][on suah.dev/p]]. Also some reci :base-extension "css\\|js\\|png\\|jpg\\|gif\\|pdf\\|mp3\\|ogg" :recursive t :publishing-function org-publish-attachment) + ("notes-rss" + :publishing-directory "/ssh:suah.dev:/var/www/htdocs/p/" + :publishing-function org-rss-publish-to-rss + :recursive t + :rss-extension "xml" + :section-numbers nil + :exclude ".*" + :include ("index.org") + :table-of-contents nil + :base-directory "~/org/notes") ("recipes" :auto-preamble t :auto-sitemap t