feat: remove launcher and wallpaper manager

This commit is contained in:
tux
2026-02-17 17:50:13 +05:30
parent 69b93ca32f
commit 00e8ee6d8b
8 changed files with 13 additions and 289 deletions

View File

@@ -1,10 +1,8 @@
import { For, This, createBinding } from "ags";
import app from "ags/gtk4/app";
import { Bar } from "./widgets/bar";
import { Launcher } from "./widgets/launcher";
import { Notifications } from "./widgets/notifications";
import { ControlCenter } from "./widgets/control-center";
import { WallpaperManager } from "./widgets/wallpaper-manager";
export const Main = () => {
const monitors = createBinding(app, "monitors");
@@ -14,10 +12,8 @@ export const Main = () => {
{(monitor) => (
<This this={app}>
<Bar gdkmonitor={monitor} />
<Launcher gdkmonitor={monitor} />
<Notifications gdkmonitor={monitor} />
<ControlCenter gdkmonitor={monitor} />
<WallpaperManager gdkmonitor={monitor} />
</This>
)}
</For>