feat: add tray and time widget

This commit is contained in:
tux
2025-05-31 18:38:21 +05:30
parent 56a87702f6
commit d5a24064e9
4 changed files with 36 additions and 0 deletions

View File

@@ -3,6 +3,8 @@ import { FocusedClient, WorkspaceButton } from "./workspace";
import { Battery } from "./battery";
import { Launcher } from "./launcher";
import { Tailscale } from "./tailscale";
import { Tray } from "./tray";
import { Time } from "./time";
export const WINDOW_NAME = "bar";
@@ -46,6 +48,8 @@ const End = () => {
<box spacing={15}>
<Tailscale />
<Battery />
<Tray />
<Time />
</box>
);
};