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>
21 lines
719 B
TOML
21 lines
719 B
TOML
# makepad_wm_theme — the one-line theme bridge for every Makepad app (wm, terminal,
|
|
# browser, files, task, sheets, route, mixer...).
|
|
#
|
|
# wm evaluates the active theme.splash (an omarchy import) and exports its
|
|
# path as MAKEPAD_WM_THEME_SPLASH to every child. An app calls
|
|
# `makepad_wm_theme::apply(vm)` right after `makepad_widgets::script_mod(vm)`, and
|
|
# the widgets theme (`mod.theme`) is retinted from that palette: base
|
|
# black/white, app bg/fg, accent, selection, text. Standalone runs without
|
|
# the env var are untouched.
|
|
|
|
[package]
|
|
name = "makepad-wm-theme"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
name = "makepad_wm_theme"
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies]
|
|
makepad-widgets = { path = "../../widgets" }
|