notohh
36bbb8603a
All checks were successful
flake check / check (push) Successful in 11m1s
fmt check / check (push) Successful in 1m6s
18 lines
No EOL
337 B
JavaScript
18 lines
No EOL
337 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
|
|
} |