;;; 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