summaryrefslogtreecommitdiff
path: root/app.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'app.tsx')
-rw-r--r--app.tsx2
1 files changed, 2 insertions, 0 deletions
diff --git a/app.tsx b/app.tsx
index d97d41d..4f59115 100644
--- a/app.tsx
+++ b/app.tsx
@@ -8,6 +8,7 @@ import Monitors from "@/services/monitors";
import Palette from "@/services/palette";
import Players from "@/services/players";
import Schemes from "@/services/schemes";
+import Wallpapers from "@/services/wallpapers";
import type PopupWindow from "@/widgets/popupwindow";
import { execAsync, idle, writeFileAsync } from "astal";
import { App } from "astal/gtk3";
@@ -41,6 +42,7 @@ App.start({
// Init services
idle(() => Schemes.get_default());
+ idle(() => Wallpapers.get_default());
console.log(`Caelestia started in ${Date.now() - now}ms`);
},