This repository has been archived on 2024-04-14. You can view files and clone it, but cannot push or open issues or pull requests.
nixos-dotfiles/user/configs/wayland/ags/ags-config/js/panel/widgets/clock.js

17 lines
424 B
JavaScript

export default () => ags.Widget.Box({
className: 'date',
children: [
ags.Widget.Icon({
icon: 'x-office-calendar-symbolic',
}),
ags.Widget.Label({
connections: [
[1000, label => ags.Utils.execAsync(['date', '+%a %d, %B %H:%M'])
.then(date => label.label = ' ' + date).catch(console.error)],
],
}),
],
});