snowflake/home/ags/config/js/widgets/time.js
2024-02-01 17:48:30 -05:00

14 lines
296 B
JavaScript

import { Utils, Widget } from "../../import.js";
const Time = () =>
Widget.Box({
child: Widget.Label({
className: "date"
}).poll(1000, (self) =>
Utils.execAsync(["date", "+%a %b %d %H:%M"]).then(
(time) => (self.label = time)
)
)
});
export { Time };