diff options
Diffstat (limited to 'app.tsx')
| -rw-r--r-- | app.tsx | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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`); }, |