13 lines
328 B
TypeScript
13 lines
328 B
TypeScript
import { Variable, GLib } from "astal"
|
|
|
|
export default function Time({ format = "%e %b - %H:%M %a" }) {
|
|
const time = Variable<string>("").poll(1000, () =>
|
|
GLib.DateTime.new_now_local().format(format)!)
|
|
|
|
return <label
|
|
className="Time"
|
|
onDestroy={() => time.drop()}
|
|
label={time()}
|
|
/>
|
|
}
|