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.

48 lines
1.3 KiB

7 months ago
8 months ago
8 months ago
7 months ago
8 months ago
7 months ago
8 months ago
7 months ago
8 months ago
7 months ago
  1. # Khard
  2. `khard` is a adressbook that runs in your terminal.
  3. To sync the data using CardDAV you'll need `vdirsyncer` aswell.
  4. ## Setup
  5. ### Arch Linux
  6. - `pacman -S khard vdirsyncer` - Install needed programs
  7. ### Configuration
  8. - Edit the `~/.config/vdirsyncer/config`.
  9. - Insert the following lines:
  10. ```
  11. [general]
  12. status_path = "~/.cache/vdirsyncer/status"
  13. #contacts
  14. [pair private_contacts]
  15. a = "private_contacts_local"
  16. b = "private_contacts_remote"
  17. collections = ["from a", "from b"]
  18. [storage private_contacts_local]
  19. type = "filesystem"
  20. path = "~/.local/share/pim/contacts"
  21. fileext = ".vcf"
  22. [storage private_contacts_remote]
  23. type = "carddav"
  24. url = "https://<url>"
  25. username = "<username>"
  26. password = "<password>"
  27. auth = "basic"
  28. ```
  29. - `vdirsyncer discover && vdirsyncer metasync` - Initialize vdirsyncer
  30. - `vdirsyncer sync` - Synchronize the addressbook (put this into a crontab to update periodically)
  31. - Add and configure a config for khard
  32. - `mkdir ~/.config/khard` - add a directory for the config
  33. - `cp /usr/share/doc/khard/khard.conf.example ~/.config/khard/khard.conf` - Copy the example configuration
  34. - Adjust `khard.conf` to your needs
  35. #### Mutt
  36. It is possible to use your khard-addressbook in mutt.
  37. To see how it works check out the [Mutt](/#application/neomutt.md).