From 37afec5ee2072c2a469c306557f6f0494d0b98c1 Mon Sep 17 00:00:00 2001 From: H-Chris233 Date: Thu, 21 May 2026 19:30:02 +0800 Subject: [PATCH] Fix Linux main window controls --- .../app/src-tauri/tauri.linux.conf.json | 55 +++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 openless-all/app/src-tauri/tauri.linux.conf.json diff --git a/openless-all/app/src-tauri/tauri.linux.conf.json b/openless-all/app/src-tauri/tauri.linux.conf.json new file mode 100644 index 00000000..4016955d --- /dev/null +++ b/openless-all/app/src-tauri/tauri.linux.conf.json @@ -0,0 +1,55 @@ +{ + "$schema": "https://schema.tauri.app/config/2", + "app": { + "windows": [ + { + "label": "main", + "title": "OpenLess", + "width": 1240, + "height": 800, + "minWidth": 980, + "minHeight": 640, + "resizable": true, + "decorations": true, + "transparent": false, + "shadow": true, + "visible": false, + "acceptFirstMouse": true + }, + { + "label": "capsule", + "url": "index.html?window=capsule", + "title": "OpenLess Capsule", + "width": 220, + "height": 110, + "decorations": false, + "transparent": true, + "shadow": false, + "alwaysOnTop": true, + "skipTaskbar": true, + "resizable": false, + "focus": false, + "visible": false, + "center": false, + "acceptFirstMouse": true + }, + { + "label": "qa", + "url": "index.html?window=qa", + "title": "OpenLess QA", + "width": 380, + "height": 440, + "decorations": false, + "transparent": true, + "shadow": true, + "alwaysOnTop": true, + "skipTaskbar": true, + "resizable": false, + "focus": false, + "visible": false, + "center": false, + "acceptFirstMouse": true + } + ] + } +}