agsdotfilesdotshyprlandhyprland-configricerofirofi-configshell-scriptsswwwwallustwaybarwaybar-modulewaybar-themes
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
491 B
18 lines
491 B
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: ['middle'], |
|
layer: 'overlay', |
|
child: Widget.Box({ |
|
vertical: true, |
|
children: [ |
|
SearchAndWindows(), |
|
] |
|
}), |
|
})
|
|
|