summaryrefslogtreecommitdiff
path: root/config.ts
diff options
context:
space:
mode:
author2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-03-01 22:01:55 +1100
committer2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-03-01 22:01:55 +1100
commit9c1cc00965170b85146ddcdaff9eeb522e1a8d48 (patch)
tree7190907197ce94aef1d23f763935bb90bc02be0b /config.ts
parentlauncher: scheme autocomplete (diff)
downloadcaelestia-shell-9c1cc00965170b85146ddcdaff9eeb522e1a8d48.tar.gz
caelestia-shell-9c1cc00965170b85146ddcdaff9eeb522e1a8d48.tar.bz2
caelestia-shell-9c1cc00965170b85146ddcdaff9eeb522e1a8d48.zip
launcher: wallpaper action
Diffstat (limited to 'config.ts')
-rw-r--r--config.ts27
1 files changed, 26 insertions, 1 deletions
diff --git a/config.ts b/config.ts
index ce4b262..142833b 100644
--- a/config.ts
+++ b/config.ts
@@ -121,6 +121,9 @@ const DEFAULTS = {
todo: {
notify: true,
},
+ wallpaper: {
+ style: "compact", // One of "compact", "medium", "large"
+ },
},
notifpopups: {
maxPopups: -1,
@@ -190,8 +193,30 @@ const DEFAULTS = {
storage: {
interval: 5000,
},
+ wallpapers: {
+ paths: [
+ {
+ recursive: true, // Whether to search recursively
+ path: "~/Pictures/Wallpapers", // Path to search
+ },
+ ],
+ },
};
const config = convertSettings(DEFAULTS);
-export const { bar, launcher, notifpopups, osds, sideleft, math, updates, weather, cpu, gpu, memory, storage } = config;
+export const {
+ bar,
+ launcher,
+ notifpopups,
+ osds,
+ sideleft,
+ math,
+ updates,
+ weather,
+ cpu,
+ gpu,
+ memory,
+ storage,
+ wallpapers,
+} = config;