diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-03-01 22:01:55 +1100 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-03-01 22:01:55 +1100 |
| commit | 9c1cc00965170b85146ddcdaff9eeb522e1a8d48 (patch) | |
| tree | 7190907197ce94aef1d23f763935bb90bc02be0b /config.ts | |
| parent | launcher: scheme autocomplete (diff) | |
| download | caelestia-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.ts | 27 |
1 files changed, 26 insertions, 1 deletions
@@ -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; |