manojm321 / elfeed-dashboard

A frontend for elfeed
GNU General Public License v3.0
81 stars 9 forks source link

+begin_quote

Note: I've moved to a self hosted solution for my RSS needs [[https://miniflux.app/][Miniflux]]. I no longer use elfeed. I'll be happy to merge any PRs, but don't expect any bug fixes/newfeatures from me.

+end_quote

** With use-package Save sample dashboard to a file

+begin_src bash

curl https://raw.githubusercontent.com/Manoj321/elfeed-dashboard/main/elfeed-dashboard.org -o ~/elfeed-dashboard.org

+end_src

Install the package

+begin_src emacs-lisp

 (use-package elfeed-dashboard
   :ensure t
   :config
   (setq elfeed-dashboard-file "~/elfeed-dashboard.org")
   ;; update feed counts on elfeed-quit
   (advice-add 'elfeed-search-quit-window :after #'elfeed-dashboard-update-links))

+end_src

** Direct Clone this repo, ex: if cloning under ~/.emacs.d/lisp/. Following config should work.

+begin_src emacs-lisp

 (use-package elfeed-dashboard
   :load-path "~/.emacs.d/lisp/elfeed-dashboard/"
   :config
   (setq elfeed-dashboard-file "~/.emacs.d/lisp/elfeed-dashboard/elfeed-dashboard.org")
   ;; update feed counts on elfeed-quit
   (advice-add 'elfeed-search-quit-window :after #'elfeed-dashboard-update-links))

+end_src