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