Files
colorshell/ags/scripts/time.ts
T

7 lines
208 B
TypeScript

import { GLib, Variable } from "astal";
const time = new Variable<GLib.DateTime>(GLib.DateTime.new_now_local()).poll(600, () =>
GLib.DateTime.new_now_local())();
export const getDateTime = () => time;