nixos-configs/modules/ags/config/ts/bar/items/clock.ts
matt1432 3e4486dc33
All checks were successful
Discord / discord commits (push) Has been skipped
feat(ags): set bar time to 12h format
2024-08-01 14:00:50 -04:00

23 lines
681 B
TypeScript

const { Label } = Widget;
const { new_now_local } = imports.gi.GLib.DateTime;
export default () => Label({ class_name: 'clock' })
.poll(1000, (self) => {
const time = new_now_local();
const dayName = time.format('%a. ');
const dayNum = time.get_day_of_month();
const date = time.format(' %b. ');
const hour = (new Date().toLocaleString([], {
hour: 'numeric',
minute: 'numeric',
hour12: true,
}) ?? '')
.replace('a.m.', 'AM')
.replace('p.m.', 'PM');
if (dayNum && dayName && date) {
self.label = dayName + dayNum + date + hour;
}
});