nixos-configs/config/ags/js/misc/closer.js

19 lines
370 B
JavaScript
Raw Normal View History

const { Window, EventBox } = ags.Widget;
const { windows, closeWindow } = ags.App;
export const Closer = Window({
2023-09-11 19:57:21 -04:00
name: 'closer',
popup: true,
layer: 'top',
anchor: 'top bottom left right',
child: EventBox({
2023-09-11 19:57:21 -04:00
onPrimaryClickRelease: () => {
windows.forEach(w => {
if (w.name != 'bar')
closeWindow(w.name)
});
2023-09-11 19:57:21 -04:00
},
}),
});