lume/src-tauri/tauri.macos.conf.json

38 lines
697 B
JSON
Raw Normal View History

2023-08-28 05:19:40 +00:00
{
"$schema": "../node_modules/@tauri-apps/cli/schema.json",
"app": {
"windows": [
{
"title": "Lume",
"label": "main",
"titleBarStyle": "Overlay",
"width": 500,
"height": 800,
"minWidth": 500,
"minHeight": 800,
"hiddenTitle": true,
"decorations": true,
"transparent": true,
"windowEffects": {
"effects": ["windowBackground"]
}
},
{
"title": "Lume Panel",
"label": "panel",
"url": "/panel",
"width": 350,
"height": 500,
"fullscreen": false,
"resizable": false,
"decorations": false,
"transparent": true,
"visible": false,
"windowEffects": {
"effects": ["popover"]
}
}
]
}
2023-08-28 05:19:40 +00:00
}