summaryrefslogtreecommitdiff
path: root/src/config
diff options
context:
space:
mode:
Diffstat (limited to 'src/config')
-rw-r--r--src/config/defaults.ts9
-rw-r--r--src/config/index.ts2
-rw-r--r--src/config/types.ts5
3 files changed, 15 insertions, 1 deletions
diff --git a/src/config/defaults.ts b/src/config/defaults.ts
index e3fe68d..f375620 100644
--- a/src/config/defaults.ts
+++ b/src/config/defaults.ts
@@ -147,4 +147,13 @@ export default {
upcomingDays: 7, // Number of days which count as upcoming
notify: true,
},
+ thumbnailer: {
+ maxAttempts: 5,
+ timeBetweenAttempts: 300,
+ defaults: {
+ width: 100,
+ height: 100,
+ exact: true,
+ },
+ },
};
diff --git a/src/config/index.ts b/src/config/index.ts
index 0cb8a60..631aa1d 100644
--- a/src/config/index.ts
+++ b/src/config/index.ts
@@ -10,7 +10,6 @@ export const {
notifpopups,
osds,
sidebar,
- sideleft,
math,
updates,
weather,
@@ -20,5 +19,6 @@ export const {
storage,
wallpapers,
calendar,
+ thumbnailer,
} = config;
export default config;
diff --git a/src/config/types.ts b/src/config/types.ts
index 8936937..226b2dd 100644
--- a/src/config/types.ts
+++ b/src/config/types.ts
@@ -82,4 +82,9 @@ export default {
"calendar.webcals": ARR(STR),
"calendar.upcomingDays": NUM,
"calendar.notify": BOOL,
+ "thumbnailer.maxAttempts": NUM,
+ "thumbnailer.timeBetweenAttempts": NUM,
+ "thumbnailer.defaults.width": NUM,
+ "thumbnailer.defaults.height": NUM,
+ "thumbnailer.defaults.exact": BOOL,
} as { [k: string]: string | string[] | number[] };