Files
TheaninovOS/desktops/hyprland/ags/windows/overview.js
2023-10-29 15:05:17 +01:00

19 lines
403 B
JavaScript

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