~cytrogen/.emacs.d

ref: 6b04fb82eaa267ddefb33753ab1518c38a3e289c .emacs.d/reading-feeds.el -rw-r--r-- 938 bytes
6b04fb82 — Cytrogen docs: 添加配置功能介绍文档 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 "http://192.168.1.119:8096"    ; FreshRSS server URL
         :api-path "/api/fever.php"             ; Fever API path (usually this)
         :user "Cytrogen"                       ; Your username
         :password "ocMUdYxRdtDJo__3haEs")  ; Raw API password (elfeed-protocol computes MD5)

        :opds
        (:url "http://192.168.1.119: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