Dotfiles for my tiling window manager + terminal workflow.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

64 lines
2.3 KiB

  1. # If you want to synchronize calcurse with a CalDAV server using
  2. # calcurse-caldav, create a new directory ~/.calcurse/caldav/, copy this file
  3. # to ~/.calcurse/caldav/config and adjust the configuration below.
  4. [General]
  5. # Path to the calcurse binary that is used for importing/exporting items.
  6. Binary = calcurse
  7. # Host name of the server that hosts CalDAV.
  8. # Hostname = p63-caldav.icloud.com
  9. Hostname = cal.khkm.tk
  10. # Path to the CalDAV calendar on the host specified above.
  11. # Path = /1031369542/calendars/School
  12. Path = /cal.php/calendars/Kevin/default
  13. # Type of authentication to use. Must be "basic" or "oauth2"
  14. AuthMethod = basic
  15. # Enable this if you want to skip SSL certificate checks.
  16. InsecureSSL = No
  17. # This option allows you to filter the types of tasks synced. To this end, the
  18. # value of this option should be a comma-separated list of item types, where
  19. # each item type is either "event", "apt", "recur-event", "recur-apt", "todo",
  20. # "recur" or "cal". Note that the comma-separated list must not contain any
  21. # spaces. Refer to the documentation of the --filter-type command line argument
  22. # of calcurse for more details. Set this option to "cal" if the configured
  23. # CalDAV server doesn't support tasks, such as is the case with Google
  24. # Calendar.
  25. SyncFilter = cal,todo
  26. # Disable this option to actually enable synchronization. If it is enabled,
  27. # nothing is actually written to the server or to the local data files. If you
  28. # combine DryRun = Yes with Verbose = Yes, you get a log of what would have
  29. # happened with this option disabled.
  30. # DryRun = Yes
  31. DryRun = No
  32. # Enable this if you want detailed logs written to stdout.
  33. Verbose = Yes
  34. # Credentials for HTTP Basic Authentication. Leave this commented out if you do
  35. # not want to use authentication.
  36. [Auth]
  37. # Username = kevin.mok@live.ca
  38. Username = Kevin
  39. # Optionally specify additional HTTP headers here.
  40. #[CustomHeaders]
  41. #User-Agent = Mac_OS_X/10.9.2 (13C64) CalendarAgent/176
  42. # Use the following to synchronize with an OAuth2-based service
  43. # such as Google Calendar.
  44. #[OAuth2]
  45. #ClientID = your_client_id
  46. #ClientSecret = your_client_secret
  47. # Scope of access for API calls. Synchronization requires read/write.
  48. #Scope = https://example.com/resource/scope
  49. # Change the redirect URI if you receive errors, but ensure that it is identical
  50. # to the redirect URI you specified in the API settings.
  51. #RedirectURI = http://127.0.0.1