From e2b51cc0e6880c1956c1b292e78297a60459d920 Mon Sep 17 00:00:00 2001 From: Cytrogen Date: Wed, 11 Mar 2026 19:28:00 -0400 Subject: [PATCH] =?UTF-8?q?chore:=20=E6=9B=B4=E6=96=B0=20gitignore=20?= =?UTF-8?q?=E5=92=8C=E6=95=B0=E6=8D=AE=E6=96=87=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - .gitignore:添加 immich-config.el、calendar-secrets.el、 .org-gcal-token、site-lisp/ 到忽略列表 - org-structure.org:修正课程笔记 Capture 模板 - reading-feeds.el:更新 FreshRSS 地址为公网域名,密码改用 pass 命令获取,更新 OPDS 服务器地址 --- .gitignore | 4 ++++ org-structure.org | 2 +- reading-feeds.el | 10 +++++----- 3 files changed, 10 insertions(+), 6 deletions(-) diff --git a/.gitignore b/.gitignore index 114aab436cbd223f6fe071c1467a8c01aa612676..aa2b2f1a756d60fedfc0ba8e820180df6380a580 100644 --- a/.gitignore +++ b/.gitignore @@ -23,3 +23,7 @@ elpa/gnupg/ # Personal/sensitive files email-accounts.el +immich-config.el +calendar-secrets.el +.org-gcal-token +site-lisp/ diff --git a/org-structure.org b/org-structure.org index b2997ef2fbd0948f91afe94c16bf0a4fc31849a6..1888f70ff5ec9866feff50ae0508a4aa5a345490 100644 --- a/org-structure.org +++ b/org-structure.org @@ -204,7 +204,7 @@ :PROPERTIES: :KEY: c :HEADLINE: 课程笔记 - :TEMPLATE: * %? \n %U + :TEMPLATE: * Placeholder :END: ** 文章笔记 :PROPERTIES: diff --git a/reading-feeds.el b/reading-feeds.el index 30c677a9af493b4db5f532a2974044aa0b67bfb2..bd817e14ef5fa197bd0044159eeac3d1ce82e7b4 100644 --- a/reading-feeds.el +++ b/reading-feeds.el @@ -6,14 +6,14 @@ ;;; Code: (setq my/reading-config - '(:freshrss - (:url "http://192.168.1.119:8096" ; FreshRSS server URL + `(:freshrss + (:url "https://rss.cytrogen.icu" ; 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) + :user "cytrogen" ; Your username + :password ,(string-trim (shell-command-to-string "pass show services/freshrss"))) :opds - (:url "http://192.168.1.119:8080/opds" ; Calibre OPDS URL + (:url "http://100.122.141.36:8080/opds" ; Calibre OPDS URL :user nil ; Username if authentication required :password nil) ; Password if authentication required