diff options
| author | JaKooLit <ejhay.games@gmail.com> | 2025-07-19 17:27:14 +0900 |
|---|---|---|
| committer | JaKooLit <ejhay.games@gmail.com> | 2025-07-19 17:27:14 +0900 |
| commit | 3c1cc04020678b76a622a1a7a28a2c1e529f7665 (patch) | |
| tree | c191782fc9e8c9eee61f64450726c77a3cae65ed /config/ags/modules/overview/main.js | |
| parent | ef1b52470a5fd2ec4b5b24ea6c1d56ca62c3c9fa (diff) | |
updated copy.sh and still added ags
Diffstat (limited to 'config/ags/modules/overview/main.js')
| -rw-r--r-- | config/ags/modules/overview/main.js | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/config/ags/modules/overview/main.js b/config/ags/modules/overview/main.js new file mode 100644 index 00000000..1f5348d9 --- /dev/null +++ b/config/ags/modules/overview/main.js @@ -0,0 +1,18 @@ +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(), + ] + }), +}) |
