diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-03-25 23:41:27 +1100 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-03-25 23:41:27 +1100 |
| commit | c336bd184ef6ffcec36397dbdafdf3c367363032 (patch) | |
| tree | 0a96fc1c0642e0a42d49cf0b62f2fcc8720d0668 /src/config | |
| parent | run: debug mode (diff) | |
| download | caelestia-shell-c336bd184ef6ffcec36397dbdafdf3c367363032.tar.gz caelestia-shell-c336bd184ef6ffcec36397dbdafdf3c367363032.tar.bz2 caelestia-shell-c336bd184ef6ffcec36397dbdafdf3c367363032.zip | |
calendar: notifications for events
Diffstat (limited to 'src/config')
| -rw-r--r-- | src/config/defaults.ts | 1 | ||||
| -rw-r--r-- | src/config/types.ts | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/src/config/defaults.ts b/src/config/defaults.ts index b6bee4f..58497a2 100644 --- a/src/config/defaults.ts +++ b/src/config/defaults.ts @@ -146,5 +146,6 @@ export default { calendar: { webcals: [] as string[], // An array of urls to ICS files which you can curl upcomingDays: 7, // Number of days which count as upcoming + notify: true, }, }; diff --git a/src/config/types.ts b/src/config/types.ts index cf828b6..8bcb112 100644 --- a/src/config/types.ts +++ b/src/config/types.ts @@ -70,4 +70,5 @@ export default { "wallpapers.paths": OBJ_ARR({ recursive: BOOL, path: STR }), "calendar.webcals": ARR(STR), "calendar.upcomingDays": NUM, + "calendar.notify": BOOL, } as { [k: string]: string | string[] | number[] }; |