notohh
e192ba705e
All checks were successful
flake check / check (push) Successful in 9m17s
fmt check / check (push) Successful in 1m16s
18 lines
No EOL
338 B
JavaScript
18 lines
No EOL
338 B
JavaScript
import { Widget, Utils } from '../../import.js';
|
|
|
|
|
|
const Time = () => Widget.EventBox({
|
|
child: Widget.Label({
|
|
className: "date"
|
|
}).poll(
|
|
1000,
|
|
(self) =>
|
|
Utils.execAsync(["date", "+%a %b %d %H:%M"]).then((time) =>
|
|
self.label = time
|
|
),
|
|
),
|
|
});
|
|
|
|
export {
|
|
Time
|
|
} |