this post was submitted on 13 Jun 2023
9 points (100.0% liked)

Emacs

2163 readers
1 users here now

Our infinitely powerful editor.

founded 4 years ago
MODERATORS
 

The lack of keyboard interface on Lemmy is killing me, but really what I want is a good client in Emacs. However, it's beyond my Elisp to design and start such a project, but I could probably help. Anyone on it?

you are viewing a single comment's thread
view the rest of the comments
[–] StrangeAstronomer@lemmy.ml 0 points 1 year ago (1 children)

FWIW I'm reading lemmy RSS feed with elfeed (hope this gets through - popping my lemmy cherry here)

[–] blawsybogsy@lemmy.ml 0 points 1 year ago* (last edited 1 year ago) (1 children)

can you see comments that way? you just subscribe to communities i imagine?

[–] StrangeAstronomer@lemmy.ml 1 points 1 year ago

Sorry for delayed response, just getting used to lemmy ...

No, I don't see comments - if I'm interested in the headline, I press 'b' to pop up the full item in my browser.

Yes, I subscribe to communities like this:

(use-package elfeed
  :bind (:map elfeed-search-mode-map
              ("s" . elfeed-search-set-filter)
              ("S" . elfeed-search-live-filter))
  :config (setf elfeed-sort-order 'ascending))

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

(setq elfeed-feeds '(
                     ("http://xkcd.com/rss.xml" comic xkcd)
                     ("http://rss.slashdot.org/Slashdot/slashdotMain" slashdot)
                     ("https://www.reddit.com/r/emacs/new/.rss?sort=new" reddit emacs)
                     ("https://www.reddit.com/r/linux/new/.rss?sort=new" reddit linux)
                     ("https://rss.beehiiv.com/feeds/iiTciQgHPG.xml" fossweekly linux)
                     ("https://distrowatch.com/news/dw.xml" news distrowatch linux)
                     ("http://oglaf.com/feeds/rss/" comic oglaf)
                     ("https://www.reddit.com/r/linuxquestions/new/.rss?sort=new" reddit linuxquestions)
                     ("https://www.reddit.com/r/fedora/new/.rss?sort=new" reddit fedora)
                     ("https://feeds.bbci.co.uk/news/rss.xml" news bbc)
                     ("https://www.rt.com/rss/" news rt)
                     ("https://hnrss.org/frontpage?count=100" news hacker)
                     ("https://www.reddit.com/r/swaywm/new/.rss?sort=new" reddit sway)
                     ("https://www.reddit.com/r/i3wm/new/.rss?sort=new" reddit i3wm)
                     ("https://www.reddit.com/r/nordvpn/new/.rss?sort=new" reddit nordvpn)
                     ("https://lwn.net/headlines/rss" news LWN.net)
                     ("https://lobste.rs/t/linux.rss" news lobsterlinux linux)
                     ("https://www.emacswiki.org/emacs?action=rss" news EmacsWiki emacs)
                     ("https://feeds.arstechnica.com/arstechnica/index" news arstechnica)
                     ("https://www.engadget.com/rss.xml" news engadget)
                     ("https://lemmy.ml/feeds/c/emacs.xml?sort=Active" emacs lemmy)
                     ("https://lemmy.ml/feeds/c/linux.xml?sort=New" linux lemmy)
                     ("https://lemmy.ml/feeds/c/swaywm.xml?sort=New" sway lemmy)))