elfeed-dashboard icon indicating copy to clipboard operation
elfeed-dashboard copied to clipboard

A frontend for elfeed

#+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

  • elfeed-dashboard [[https://melpa.org/#/elfeed-dashboard][file:https://melpa.org/packages/elfeed-dashboard-badge.svg]] [[http://www.gnu.org/licenses/gpl-3.0.txt][file: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. #+html:

  • Installation ** With [[https://github.com/raxod502/straight.el][straight.el]] #+begin_src emacs-lisp (straight-use-package '(elfeed-dashboard :type git :host github :repo "Manoj321/elfeed-dashboard")) #+end_src

** 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

  • 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

    [[file:LICENSE][GNU GPLv3.0]]

  • Contribute

    Yes please! open github [[https://github.com/Manoj321/kapacitor-el/issues][issues]]

  • Credits

    Much thanks to [[https://github.com/rougier/mu4e-dashboard][mu4e-dashboard]] for inspiring me!