Packages are makepad-<name> with the short name as the binary. Env vars follow (MAKEPAD_WM_*, MAKEPAD_FILES_*, MAKEPAD_TERMINAL_*), config moves under ~/.makepad/<app>/, the theme namespaces are mod.wm_theme and mod.browser_theme, the hosted AI envelope key is wm_ai. platform/video becomes makepad-platform-video so the video app can be makepad-video. Carries the Score entries that were pending in the WM's curated table. Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com>
18 lines
544 B
TOML
18 lines
544 B
TOML
# makepad-wm-api — the Makepad apps' API to the window manager (wm).
|
|
#
|
|
# An app hosted as an wm tile talks to the compositor over the studio
|
|
# protocol's Custom channel; this crate is the typed vocabulary on both
|
|
# ends: "open a preview of this file", "open this file", "my title/cwd
|
|
# changed", "notify". Standalone (not hosted) the calls fall back sensibly.
|
|
|
|
[package]
|
|
name = "makepad-wm-api"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
name = "makepad_wm_api"
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies]
|
|
makepad-widgets = { path = "../../widgets" }
|