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?

    • @StrangeAstronomer@lemmy.ml
      link
      fedilink
      English
      11 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)))