mirror of
https://github.com/Theaninova/TheaninovOS.git
synced 2025-12-12 19:46:20 +00:00
18 lines
400 B
JavaScript
18 lines
400 B
JavaScript
import Widget from "resource:///com/github/Aylur/ags/widget.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()],
|
|
}),
|
|
})
|