~cytrogen/.emacs.d

ref: e2b51cc0e6880c1956c1b292e78297a60459d920 .emacs.d/reading-feeds.el -rw-r--r-- 935 bytes
e2b51cc0 — Cytrogen chore: 更新 gitignore 和数据文件 a month ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
;;; reading-feeds.el --- Reading configuration (FreshRSS + OPDS) -*- lexical-binding: t -*-

;; This file contains your FreshRSS and OPDS server configurations.
;; Edit the values below to match your setup.

;;; Code:

(setq my/reading-config
      `(:freshrss
        (:url "https://rss.cytrogen.icu"    ; FreshRSS server URL
         :api-path "/api/fever.php"             ; Fever API path (usually this)
         :user "cytrogen"                       ; Your username
         :password ,(string-trim (shell-command-to-string "pass show services/freshrss")))

        :opds
        (:url "http://100.122.141.36:8080/opds"      ; Calibre OPDS URL
         :user nil                              ; Username if authentication required
         :password nil)                         ; Password if authentication required

        :download-dir "~/Books/"))              ; Where to save downloaded books

;;; reading-feeds.el ends here