Tweak elfeed, emms, and webjump
This commit is contained in:
parent
8a9ccabda0
commit
d27c3613cd
72
README.org
72
README.org
@ -3507,6 +3507,7 @@ files.
|
|||||||
Listing [[lst:configure-webjump]] binds {{{kbd(C-c j)}}} to =webjump= and
|
Listing [[lst:configure-webjump]] binds {{{kbd(C-c j)}}} to =webjump= and
|
||||||
initializes a list of =webjump-sites=.
|
initializes a list of =webjump-sites=.
|
||||||
|
|
||||||
|
#+attr_latex: :options breaklines
|
||||||
#+caption[Configure =webjump=]:
|
#+caption[Configure =webjump=]:
|
||||||
#+caption: Configure =webjump=.
|
#+caption: Configure =webjump=.
|
||||||
#+name: lst:configure-webjump
|
#+name: lst:configure-webjump
|
||||||
@ -3517,8 +3518,12 @@ initializes a list of =webjump-sites=.
|
|||||||
(custom-set-variables
|
(custom-set-variables
|
||||||
'(webjump-sites
|
'(webjump-sites
|
||||||
'(("CS 325 AI Programming" . "courses.cs.northwestern.edu/325")
|
'(("CS 325 AI Programming" . "courses.cs.northwestern.edu/325")
|
||||||
("Emacs Git Repositories" . "savannah.gnu.org/git/?group=emacs")
|
;; ("Emacs Git Repositories" . "savannah.gnu.org/git/?group=emacs")
|
||||||
|
("Emacs Git Repository" . "git.savannah.gnu.org/cgit/emacs.git")
|
||||||
("Emacs News" . "sachachua.com/blog/category/emacs-news")
|
("Emacs News" . "sachachua.com/blog/category/emacs-news")
|
||||||
|
("GNU ELPA Git Repository" . "git.savannah.gnu.org/cgit/emacs/elpa.git")
|
||||||
|
("NonGNU ELPA Git Repository" . "git.savannah.gnu.org/cgit/emacs/nongnu.git")
|
||||||
|
("Org Mode Git Repository" . "git.savannah.gnu.org/cgit/emacs/org-mode.git")
|
||||||
("Org Mode List" . "list.orgmode.org")
|
("Org Mode List" . "list.orgmode.org")
|
||||||
("Worg - Org Mode Community" . "orgmode.org/worg")
|
("Worg - Org Mode Community" . "orgmode.org/worg")
|
||||||
("Planet Emacs Life" . "planet.emacslife.com")
|
("Planet Emacs Life" . "planet.emacslife.com")
|
||||||
@ -3544,33 +3549,36 @@ initializes a list of =webjump-sites=.
|
|||||||
:CUSTOM_ID: sec:emacs-web-feed-reader
|
:CUSTOM_ID: sec:emacs-web-feed-reader
|
||||||
:END:
|
:END:
|
||||||
|
|
||||||
#+caption[Enable =elfeed=]:
|
Listing [[lst:configure-elfeed]] configures =elfeed=.
|
||||||
#+caption: Enable =elfeed=.
|
|
||||||
#+name: lst:enable-elfeed
|
|
||||||
#+begin_src emacs-lisp
|
|
||||||
(autoload 'elfeed "elfeed" nil t)
|
|
||||||
(global-set-key (kbd "C-x w") #'elfeed)
|
|
||||||
|
|
||||||
(with-eval-after-load 'elfeed
|
#+attr_latex: :options breaklines
|
||||||
(custom-set-variables
|
#+caption[Configure =elfeed=]:
|
||||||
'(elfeed-feeds
|
#+caption: Configure =elfeed=.
|
||||||
'(("http://www.howardism.org/index.xml" h-abrams)
|
#+name: lst:configure-elfeed
|
||||||
("https://ambrevar.xyz/atom.xml" p-neirhardt)
|
#+begin_src emacs-lisp
|
||||||
("https://emacshorrors.com/feed.atom" v-schneidermann)
|
(when (fboundp 'elfeed)
|
||||||
("https://emacsninja.com/emacs.atom" v-schneidermann)
|
(global-set-key (kbd "C-x w") #'elfeed)
|
||||||
("https://feeds.feedburner.com/InterceptedWithJeremyScahill" j-scahill)
|
|
||||||
("https://nullprogram.com/feed/" c-wellons)
|
(with-eval-after-load 'elfeed
|
||||||
("https://oremacs.com/atom.xml" o-krehel)
|
(custom-set-variables
|
||||||
("https://planet.emacslife.com/atom.xml" planet-emacs)
|
'(elfeed-feeds
|
||||||
("https://protesilaos.com/codelog.xml" p-stavrou)
|
'(("http://www.howardism.org/index.xml" h-abrams)
|
||||||
("https://sachachua.com/blog/category/emacs/feed" s-chua)
|
("https://ambrevar.xyz/atom.xml" p-neirhardt)
|
||||||
("https://sciencescitoyennes.org/feed/" sciences)
|
("https://emacshorrors.com/feed.atom" v-schneidermann)
|
||||||
("https://updates.orgmode.org/feed/updates" org-updates)
|
("https://emacsninja.com/emacs.atom" v-schneidermann)
|
||||||
("https://www.aclu.org/taxonomy/feed-term/2152/feed" aclu)
|
("https://feeds.feedburner.com/InterceptedWithJeremyScahill" j-scahill)
|
||||||
("https://www.bof.nl/rss/" bof)
|
("https://nullprogram.com/feed/" c-wellons)
|
||||||
("https://www.democracynow.org/podcast-video.xml" dn)
|
("https://oremacs.com/atom.xml" o-krehel)
|
||||||
("https://www.laquadrature.net/fr/rss.xml" lqdn)
|
("https://planet.emacslife.com/atom.xml" planet-emacs)
|
||||||
("https://www.lemonde.fr/blog/huet/feed/" sciences)))))
|
("https://protesilaos.com/codelog.xml" p-stavrou)
|
||||||
|
("https://sachachua.com/blog/category/emacs/feed" s-chua)
|
||||||
|
("https://sciencescitoyennes.org/feed/" sciences)
|
||||||
|
("https://updates.orgmode.org/feed/updates" org-updates)
|
||||||
|
("https://www.aclu.org/taxonomy/feed-term/2152/feed" aclu)
|
||||||
|
("https://www.bof.nl/rss/" bof)
|
||||||
|
("https://www.democracynow.org/podcast-video.xml" dn)
|
||||||
|
("https://www.laquadrature.net/fr/rss.xml" lqdn)
|
||||||
|
("https://www.lemonde.fr/blog/huet/feed/" sciences))))))
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
** [[info:emms#Top][Emacs Multimedia System (info)]]
|
** [[info:emms#Top][Emacs Multimedia System (info)]]
|
||||||
@ -3578,9 +3586,13 @@ initializes a list of =webjump-sites=.
|
|||||||
:CUSTOM_ID: sec:emacs-multimedia-system
|
:CUSTOM_ID: sec:emacs-multimedia-system
|
||||||
:END:
|
:END:
|
||||||
|
|
||||||
#+caption[Enable =emms=]:
|
The link [[https://sqrtminusone.xyz/posts/2021-09-07-emms/][my emms and elfeed setup]] is a nice introduction to configuring and
|
||||||
#+caption: Enable =emms=.
|
using =emms= with =elfeed=. Listing [[lst:configure-emms]] configures =emms= for
|
||||||
#+name: lst:enable-emms
|
use with =elfeed=.
|
||||||
|
|
||||||
|
#+caption[Configure =emms=]:
|
||||||
|
#+caption: Configure =emms=.
|
||||||
|
#+name: lst:configure-emms
|
||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp
|
||||||
(with-eval-after-load 'elfeed-show
|
(with-eval-after-load 'elfeed-show
|
||||||
(when (require 'emms-setup nil 'noerror)
|
(when (require 'emms-setup nil 'noerror)
|
||||||
|
Loading…
Reference in New Issue
Block a user