~cytrogen/.emacs.d

ref: f8d92bae3251c172bfda2f570da2886112018e60 .emacs.d/reading-feeds.el -rw-r--r-- 938 bytes
f8d92bae — Cytrogen feat(dictionary): 添加 sdcv 离线词典和 GoldenDict 集成 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