pikabar/pika-hyprland-settings/etc/skel/.config/ags/windows/calendar.js
Window Managers Group b544cbd928 Initial commit
2024-11-17 15:45:46 +01:00

23 lines
575 B
JavaScript

const { Widget } = ags;
export const calendar = Widget.Window({
name: 'calendar',
anchor: ['top', 'right'],
visible: false,
exclusive: true,
child: Widget.Box({
className: 'cal',
children: [
Widget.Box({
className: 'calendar',
children: [
Widget.Box({
halign: 3,
hexpand: true,
children: [imports.gi.Gtk.Calendar.new()],
}),
],
}),
],
}),
});