mirror of
https://github.com/tuxdotrs/tpanel.git
synced 2026-03-22 09:26:31 +05:30
feat: remove launcher and wallpaper manager
This commit is contained in:
4
main.tsx
4
main.tsx
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user