Files
tpanel/widgets/bar/time.tsx
2025-09-24 16:39:34 +05:30

13 lines
282 B
TypeScript

import { createPoll } from "ags/time";
import GLib from "gi://GLib";
export const Time = () => {
const time = createPoll(
"",
1000,
() => GLib.DateTime.new_now_local().format("%a %b %d - %I:%M:%S %p")!,
);
return <label cssClasses={["pill"]} label={time} />;
};