forked from Shinonome/dots-hyprland
19 lines
485 B
JavaScript
19 lines
485 B
JavaScript
import Widget from 'resource:///com/github/Aylur/ags/widget.js';
|
|
import { SearchAndWindows } from "./windowcontent.js";
|
|
import PopupWindow from '../.widgethacks/popupwindow.js';
|
|
|
|
export default (id = '') => PopupWindow({
|
|
name: `overview${id}`,
|
|
exclusivity: 'ignore',
|
|
keymode: 'exclusive',
|
|
visible: false,
|
|
anchor: ['top'],
|
|
layer: 'overlay',
|
|
child: Widget.Box({
|
|
vertical: true,
|
|
children: [
|
|
SearchAndWindows(),
|
|
]
|
|
}),
|
|
})
|