blob: bf5466af0a1b0b0efb2a00af2061e81cc3a9398b (
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
27
28
29
30
31
32
33
34
35
36
37
|
[Calendar]
# Path and filename of calendar file
path=/home/user/.config/soon
defaultFile=calendar.soon
# Number of default past and future days to display
past=0
future=14
# Editor for soon -e command to open calendar
editor=vim
# Default soon arguments, e.g. soon -atd
defaultCommand=atd
[Todo List]
alwaysPrint=true
[Archive]
path=/home/user/.config/soon/archive
# Whether archived events in the past/future show on the calendar
showFutureArchivedEvents=true
showPastArchivedEvents=false
# Keep all events on the calendar until manually archived
# If you use calendars like a todo list you might want this
# E.g. you put things like "Oil change" on your calendar but you don't always
# do it in time so you want it to stick around
alwaysShowUnarchivedEvents=true
# Everything before this date is considered archived
startDate=2026-01-01
# When you archive the last instance of an event from the TUI, this will delete
# the event from your calendar
deleteFromCalendarFile=true
|