These are some guides for various use.
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.

51 lines
1.1 KiB

7 months ago
8 months ago
8 months ago
7 months ago
8 months ago
7 months ago
7 months ago
7 months ago
7 months ago
  1. # Khal
  2. `khal` is a calendar you can use in your terminal.
  3. To sync calendars you'll need `vdirsyncer` aswell.
  4. ## Setup
  5. ### Arch-Linux
  6. - `pacman -S khal vdirsyncer` - Install needed packages
  7. ### Configuration
  8. - To configure vdirsyncer edit a file in `~/.config/vdirsyncer/config`.
  9. ```
  10. [general]
  11. status_path = "~/.cache/vdirsyncer/status"
  12. #calendar
  13. [pair private_calendar]
  14. a = "private_calendar_local"
  15. b = "private_calendar_remote"
  16. collections = ["from a", "from b"]
  17. metadata = ["color"]
  18. [storage private_calendar_local]
  19. type = "filesystem"
  20. path = "~/.local/share/pim/calendars/private_calendar"
  21. fileext = ".ics"
  22. [storage private_calendar_remote]
  23. type = "caldav"
  24. url = "https://<url>"
  25. auth = "basic"
  26. username = "<username>"
  27. password = "<password>"
  28. ```
  29. - `vdirsyncer discober && vdirsyncer metasync` - After that initialize vdirsyncer.
  30. - `vdirsyncer sync` - Synchronize your data (put it in a crontab to run periodically)
  31. - Edit the `~/.config/khal/config`
  32. - Insert the following lines
  33. ```
  34. [calendars]
  35. [[calendars]]
  36. path = ~/.local/share/pim/calendars/*/*
  37. type = discover
  38. ```