diff options
| author | Craig Jennings <c@cjennings.net> | 2025-10-18 00:26:48 -0500 |
|---|---|---|
| committer | Craig Jennings <c@cjennings.net> | 2025-10-18 00:26:48 -0500 |
| commit | 8c2e146754fe7714254e0c61b54d3e145281b4cf (patch) | |
| tree | ea1bffdb262d3878a169a89bfa132c2431b1ffbf /modules | |
| parent | bfc306e07bcf1204b0c4622e316c5a0061aa1a7a (diff) | |
| download | dotemacs-8c2e146754fe7714254e0c61b54d3e145281b4cf.tar.gz dotemacs-8c2e146754fe7714254e0c61b54d3e145281b4cf.zip | |
fix: org-gcal: disable idle timer for initial sync
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/org-gcal-config.el | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/modules/org-gcal-config.el b/modules/org-gcal-config.el index 61016f2e8..4859a3c0f 100644 --- a/modules/org-gcal-config.el +++ b/modules/org-gcal-config.el @@ -81,12 +81,12 @@ (org-gcal-reload-client-id-secret)) ;; Set up automatic initial sync on boot with error handling -(run-with-idle-timer - 5 nil - (lambda () - (condition-case err - (org-gcal-sync) - (error (message "org-gcal: Initial sync failed: %s" err))))) +;;(run-with-idle-timer +;; 2 nil +;; (lambda () +;; (condition-case err +;; (org-gcal-sync) +;; (error (message "org-gcal: Initial sync failed: %s" err))))) (provide 'org-gcal-config) ;;; org-gcal-config.el ends here |
