blob: f28b34851b8e0443a4f633d7967652a8d084c613 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# Auto update all agandas
## vdirsync
Just enable user service vdirsyncer.timer
/!\ Update 5 min after start and 15min after first vdirsync update
## ikhal
Create a ikhal service with the following content:
```
[Unit]
Description=Update khal's cache
Documentation=man:khal(1)
After=vdirsyncer.service
RefuseManualStart=true
[Service]
ExecStart=/usr/bin/khal
Type=oneshot
StandardOutput=null
[Install]
WantedBy=vdirsyncer.service
```
|