forked from Shinonome/dots-hyprland
19 lines
402 B
JavaScript
19 lines
402 B
JavaScript
import { Widget } from '../../imports.js';
|
|
import { SearchAndWindows } from "./overview.js";
|
|
|
|
export default () => Widget.Window({
|
|
name: 'overview',
|
|
exclusivity: 'ignore',
|
|
focusable: true,
|
|
popup: true,
|
|
visible: false,
|
|
anchor: ['top'],
|
|
layer: 'overlay',
|
|
child: Widget.Box({
|
|
vertical: true,
|
|
children: [
|
|
SearchAndWindows(),
|
|
]
|
|
}),
|
|
})
|