manojm321 / elfeed-dashboard

A frontend for elfeed

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

elfeed-dashboard

https://melpa.org/packages/elfeed-dashboard-badge.svg https://img.shields.io/badge/license-GPL_v3-green.svg

A frontend for elfeed, similar to mu4e landing page. The UI can be customized with org mode.

Installation

(straight-use-package '(elfeed-dashboard :type git :host github :repo "Manoj321/elfeed-dashboard"))

With use-package

Save sample dashboard to a file

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

Install the package

(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))

Direct

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

(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))

Usage

  1. M-x elfeed-dashboard will bring up the UI
  2. “E” will let you edit in org-mode
  3. “U” will fetch new feeds. If elfeed-org is installed then it will call (elfeed-org) before fetching.
  4. Add new key maps in configuration section and call M-x elfeed-dashboard-mode to install.

License

GNU GPLv3.0

Contribute

Yes please! open github issues

Credits

Much thanks to mu4e-dashboard for inspiring me!

About

A frontend for elfeed

License:GNU General Public License v3.0


Languages

Language:Emacs Lisp 100.0%