You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -245,7 +245,7 @@ If the special value `'auto'` is used, Kando will choose a transparent flavor if
245
245
246
246
Can be one of `'color'`, `'white'`, `'light'`, `'dark'`, `'black'`, or `'none'`. The color flavors are only available on Windows and Linux. On macOS, the color always depends on your system colors. If set to `'none'`, the tray icon will be hidden.
@@ -415,13 +415,13 @@ Can be one of the following:
415
415
416
416
If enabled, pressing <kbd>Command</kbd>+<kbd>,</kbd> on macOS or <kbd>Ctrl</kbd>+<kbd>,</kbd> on Linux or Windows will open the settings window. If disabled, the default hotkey will be ignored.
@@ -513,6 +513,7 @@ Each menu item is a JSON object with the following properties:
513
513
|`name`| The name of the menu item. This is shown in the center of the menu when the item is hovered. The name of the root item defines the name of the menu. |
514
514
|`iconTheme`| Either one of the built-in icon themes (`material-symbols-rounded`, `simple-icons`, `simple-icons-colored`, `base64`, or `emoji`) or a subdirectory of the `icon-themes` directory in Kando’s config directory. [See details](/icon-themes). |
515
515
|`icon`| The name of the icon from the selected icon theme, an emoji like `🚀` (when `iconTheme` is `emoji`), or a base64-encoded image such as `data:image/gif;base64,...` (when the icon theme is `base64`). [See details](/icon-themes). |
516
+
|`quickSelectKey` <Badgetext="new!"variant="tip" /> | The key that can be used to quickly select this menu item. A single letter like "A", "B", etc. can be used. |
516
517
|`angle` (_optional_) | Defines the angle of the menu item in degrees. If omitted, the angle is calculated automatically. `0°` places the item at the top of the menu, `90°` on the right, and so on. Among sibling items, angles must be monotonically increasing. The first angle must be ≥ `0°`, and all following angles must be smaller than the first angle + `360°`. Invalid angles are ignored. |
517
518
|`type`| The type of the menu item. Several types are available. [See details](#menu-item-types). |
518
519
|`data`| Depending on the item type, this may contain additional data or be required. [See details](#menu-item-types). |
Copy file name to clipboardExpand all lines: src/content/docs/icon-themes.mdx
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -29,7 +29,7 @@ Kando comes with a few icon themes pre-installed and you can easily add your own
29
29
Kando comes with a few icon themes pre-installed. You can select them in the icon picker in the menu editor.
30
30
Here's a list of the built-in icon themes:
31
31
32
-
1. System Icons <Badgetext="new!"variant="tip" />: This special icon theme contains different icons depending on your operating system.
32
+
1. System Icons: This special icon theme contains different icons depending on your operating system.
33
33
* On **Windows** and **macOS**, it contains the icons of the applications you have installed.
34
34
* On **Linux**, it contains the icons of the currently selected icon theme of your desktop environment. This means, the icons will change when you change your desktop environment's icon theme!
35
35
2.[Simple Icons](https://simpleicons.org) (Plain & Colored): A set of icons for popular brands.
Copy file name to clipboardExpand all lines: src/content/docs/ipc-interface.mdx
+2-6Lines changed: 2 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ title: Websocket Interface
6
6
description: How to control Kando via Websockets
7
7
sidebar:
8
8
badge:
9
-
text: soon!
9
+
text: new!
10
10
variant: tip
11
11
---
12
12
@@ -20,11 +20,7 @@ import { Icon } from 'astro-icon/components';
20
20
Kando offers a powerful Inter-Process Communication (IPC) API via WebSockets, enabling seamless integration with third-party applications and plugins.
21
21
</Intro>
22
22
23
-
<Asidetype="danger"title="IPC API is not available yet!">
24
-
The IPC API described in this document will be available in Kando 2.3.0.
25
-
</Aside>
26
-
27
-
This API allows you to both open custom menus in Kando and observe user interactions in any menu.
23
+
This API allows you to both open custom menus in Kando and observe user interactions in any menu.
28
24
29
25
-**Opening Custom Menus:** Trigger Kando to display a menu you define, and receive the user's selection. This is ideal for integrating Kando with other applications or workflows.
30
26
-**Listening to Menu Interactions:** Observe when users open, hover, or select items in any Kando menu. This is useful for plugins that provide feedback (e.g., haptic feedback) or analytics.
0 commit comments