chore: update html, md files
This commit is contained in:
@@ -84,6 +84,18 @@
|
||||
Find relevant content instantly.</p>
|
||||
<p style="margin-top: 1rem;"><kbd>Super</kbd> + <kbd>Shift</kbd> + <kbd>E</kbd></p>
|
||||
</div>
|
||||
<div class="feature-card">
|
||||
<div class="feature-icon">📝</div>
|
||||
<h3>Auto-Organization</h3>
|
||||
<p>Context-aware window placement and workspace optimization
|
||||
based on your current workflow.</p>
|
||||
</div>
|
||||
<div class="feature-card">
|
||||
<div class="feature-icon">🔔</div>
|
||||
<h3>Smart Notifications</h3>
|
||||
<p>Intelligent filtering and prioritization of system notifications
|
||||
using application context.</p>
|
||||
</div>
|
||||
</div>
|
||||
<h2 id="openrouter" style="margin-top: 4rem;">Setting Up OpenRouter</h2>
|
||||
<p style="color: var(--text-muted); margin-bottom: 1.5rem;">
|
||||
|
||||
@@ -62,6 +62,7 @@
|
||||
<li>
|
||||
<span class="section-title">Reference</span>
|
||||
<ul>
|
||||
<li><a href="#api">WebSocket API</a></li>
|
||||
<li><a href="shortcuts.html">Keyboard Shortcuts</a></li>
|
||||
<li><a href="configuration.html">Configuration</a></li>
|
||||
<li><a href="ai-features.html">AI Features</a></li>
|
||||
@@ -340,6 +341,69 @@
|
||||
the current article with <kbd>Super</kbd> + <kbd>Return</kbd>. Both panels can
|
||||
be hidden in the configuration if you prefer a minimal setup.
|
||||
</p>
|
||||
<h2 id="api">WebSocket API</h2>
|
||||
<p>
|
||||
DWN exposes a real-time WebSocket API (default port <code>8777</code>) that allows for
|
||||
complete programmatic control of the window manager.
|
||||
</p>
|
||||
<div class="card">
|
||||
<h3>Connecting</h3>
|
||||
<p>Endpoint: <code>ws://localhost:8777/ws</code></p>
|
||||
<p>The API must be enabled in your configuration:</p>
|
||||
<pre><code>[api]
|
||||
enabled = true
|
||||
port = 8777</code></pre>
|
||||
</div>
|
||||
<h3>Supported Commands</h3>
|
||||
<div class="table-wrapper">
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Command</th>
|
||||
<th>Description</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td><code>get_status</code></td>
|
||||
<td>Get WM version and current workspace ID</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code>get_workspaces</code></td>
|
||||
<td>List all workspaces and their client counts</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code>get_clients</code></td>
|
||||
<td>Get details of all managed windows</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code>switch_workspace</code></td>
|
||||
<td>Change to a specific workspace ID</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code>run_command</code></td>
|
||||
<td>Execute a shell command</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code>focus_client</code></td>
|
||||
<td>Focus a specific window by ID</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<h3>Advanced Examples</h3>
|
||||
<p>
|
||||
Check the <code>scripts/api_examples/</code> directory in the source tree for
|
||||
sophisticated implementations:
|
||||
</p>
|
||||
<ul>
|
||||
<li><strong>Window Picker</strong> (<code>window_picker_fzf.py</code>) - Fuzzy finder for windows.</li>
|
||||
<li><strong>Session Manager</strong> (<code>session_manager.py</code>) - Save/restore window layouts.</li>
|
||||
<li><strong>Web Remote</strong> (<code>web_remote.html</code>) - Browser-based dashboard.</li>
|
||||
<li><strong>Auto-Manager</strong> (<code>listen.py</code>) - Proactive workspace optimization.</li>
|
||||
</ul>
|
||||
|
||||
<h2>Next Steps</h2>
|
||||
<p>Now that you know the basics, explore these topics:</p>
|
||||
<ul>
|
||||
|
||||
@@ -291,6 +291,36 @@
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<section class="section">
|
||||
<div class="container">
|
||||
<h2>Extensible API</h2>
|
||||
<p style="color: var(--text-muted); max-width: 700px; margin-bottom: 2rem;">
|
||||
DWN exposes a real-time WebSocket API that allows for complete programmatic
|
||||
control and monitoring of your desktop environment.
|
||||
</p>
|
||||
<div class="features-grid">
|
||||
<div class="card">
|
||||
<h3>💡 Real-time Monitoring</h3>
|
||||
<p>Subscribe to window manager events and state changes. Build custom dashboards,
|
||||
status bars, or automation scripts.</p>
|
||||
</div>
|
||||
<div class="card">
|
||||
<h3>🎫 Remote Control</h3>
|
||||
<p>Change workspaces, focus windows, and launch applications programmatically
|
||||
from any language that supports WebSockets.</p>
|
||||
</div>
|
||||
<div class="card">
|
||||
<h3>💻 Integration Ready</h3>
|
||||
<p>Native support for JSON-RPC style commands makes it easy to integrate with
|
||||
external tools, mobile apps, or web interfaces.</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="alert alert-info" style="margin-top: 2rem;">
|
||||
<p style="margin: 0;">Detailed API documentation and examples are available in the
|
||||
<a href="documentation.html#api">Documentation section</a>.</p>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<section class="section section-alt">
|
||||
<div class="container">
|
||||
<h2>Standards Compliance</h2>
|
||||
|
||||
@@ -85,6 +85,12 @@
|
||||
<p>Optional AI command palette and semantic web search. Control your desktop
|
||||
with natural language and get intelligent suggestions.</p>
|
||||
</div>
|
||||
<div class="feature-card">
|
||||
<div class="feature-icon">💬</div>
|
||||
<h3>Extensible API</h3>
|
||||
<p>Real-time WebSocket interface for programmatic control. Build custom
|
||||
dashboards, mobile remotes, and automated workflows.</p>
|
||||
</div>
|
||||
<div class="feature-card">
|
||||
<div class="feature-icon">🔔</div>
|
||||
<h3>Notification Daemon</h3>
|
||||
@@ -181,6 +187,12 @@ echo "exec dwn" >> ~/.xinitrc</code></pre>
|
||||
</div>
|
||||
<div class="screenshot-caption">AI-powered command palette for natural language control</div>
|
||||
</div>
|
||||
<div class="screenshot">
|
||||
<div class="screenshot-placeholder">
|
||||
[WebSocket API Dashboard]
|
||||
</div>
|
||||
<div class="screenshot-caption">Real-time WebSocket API for custom integrations</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
Reference in New Issue
Block a user