diff options
author | Raúl Benencia <id@rbenencia.name> | 2024-10-31 07:57:55 -0700 |
---|---|---|
committer | Raúl Benencia <id@rbenencia.name> | 2024-10-31 07:57:55 -0700 |
commit | 77f0751d75ab2fc126e46439f72e9df1f094820c (patch) | |
tree | 5233e965dd2536673585fe63a4bf6481e1ee23ff /.emacs.d/rul-lisp/packages/rul-io.el | |
parent | 8189f9666797f596a6761f773acf10f62b0d2553 (diff) |
emacs: centralize feeds and media in io package
Diffstat (limited to '.emacs.d/rul-lisp/packages/rul-io.el')
-rw-r--r-- | .emacs.d/rul-lisp/packages/rul-io.el | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/.emacs.d/rul-lisp/packages/rul-io.el b/.emacs.d/rul-lisp/packages/rul-io.el new file mode 100644 index 0000000..eb2c1c7 --- /dev/null +++ b/.emacs.d/rul-lisp/packages/rul-io.el @@ -0,0 +1,19 @@ +;;; rul-io.el --- Configuration for Internet and media packages + +(use-package elfeed :ensure t) +(provide 'rul-feeds) + +(use-package empv +:ensure t +:config + (bind-key "C-x m" empv-map) + (setq empv-radio-channels + '( + ("SomaFM - Groove Salad" . "http://www.somafm.com/groovesalad.pls") + ("SomaFM - DEFCON" . "https://somafm.com/defcon256.pls") + ("SomaFM - Metal" . "https://somafm.com/metal.pls") + ("SomaFM - Lush" . "https://somafm.com/lush130.pls") + ("KCSM Jazz 91" . "http://ice5.securenetsystems.net/KCSM") + ))) + +(provide 'rul-io) |