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.3 KiB

7 months ago
8 months ago
8 months ago
7 months ago
8 months ago
7 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. ```txt
  11. [general]
  12. status_path = "~/.cache/vdirsyncer/status"
  13. [pair private_contacts]
  14. a = "private_contacts_local"
  15. b = "private_contacts_remote"
  16. collections = ["from a", "from b"]
  17. [storage private_contacts_local]
  18. type = "filesystem"
  19. path = "~/.local/share/pim/contacts"
  20. fileext = ".vcf"
  21. [storage private_contacts_remote]
  22. type = "carddav"
  23. url = "https://<url>"
  24. username = "<username>"
  25. password = "<password>"
  26. auth = "basic"
  27. ```
  28. - `vdirsyncer discover && vdirsyncer metasync` - Initialize vdirsyncer
  29. - `vdirsyncer sync` - Synchronize the addressbook (put this into a crontab to
  30. 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` -
  34. Copy the example configuration
  35. - Adjust `khard.conf` to your needs
  36. #### Mutt
  37. It is possible to use your khard-addressbook in mutt.
  38. To see how it works check out the [Mutt](/#application/neomutt.md).