mirror of
https://github.com/agent0ai/agent-zero.git
synced 2026-05-17 04:01:13 +00:00
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.
21 lines
718 B
HTML
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>
|