agent-zero/plugins/_desktop/webui/main.html
Alessandro 76a282ba8f Move Linux Desktop runtime into _desktop
Add the built-in _desktop plugin as the owner of Xpra/Xfce lifecycle, /desktop route installation, Desktop state, session APIs, surface registration, and the linux-desktop skill. Leave _office with explicit compatibility facades and self-update delegates so users coming from 1.10 through 1.13 keep their runtime cleanup path.
2026-05-07 00:14:54 +02:00

21 lines
718 B
HTML

<html
class="surface-modal office-modal modal-no-backdrop"
data-surface-id="desktop"
data-surface-modal-path="/plugins/_desktop/webui/main.html"
data-surface-dock-title="Open Desktop in surface"
data-surface-dock-icon="dock_to_right"
data-canvas-surface="desktop"
data-canvas-modal-path="/plugins/_desktop/webui/main.html"
data-canvas-dock-title="Open Desktop in canvas"
data-canvas-dock-icon="dock_to_right"
>
<head>
<title>Desktop</title>
<script type="module">
import { store } from "/plugins/_desktop/webui/desktop-store.js";
</script>
</head>
<body class="office-modal-body">
<x-component path="/plugins/_desktop/webui/desktop-panel.html" mode="modal"></x-component>
</body>
</html>