Files
Olympus/home-manager/dotfiles/ags/clock.js

14 lines
208 B
JavaScript
Executable File

const date = Variable("", {
poll: [1000, 'date "+%H:%M %b %e."'],
})
function Clock() {
return Widget.Label({
class_name: "clock",
label: date.bind(),
})
}
export default Clock