Files
illogical-impulse/.config/ags/widgets/overview/main.js
T
2023-12-25 18:16:14 +07:00

19 lines
402 B
JavaScript

import { Widget } from '../../imports.js';
import { SearchAndWindows } from "./overview.js";
export default () => Widget.Window({
name: 'overview',
exclusivity: 'normal',
focusable: true,
popup: true,
visible: false,
anchor: ['top'],
layer: 'overlay',
child: Widget.Box({
vertical: true,
children: [
SearchAndWindows(),
]
}),
})