Aeris WASM plugin for managing AppImage applications via the AM CLI.
- Search AM's AppImage catalog
- Install AppImages via
am -i - Remove installed AppImages via
am -R - Update AppImages via
am -u - List installed AppImages via
am -f - Health check via
am --version
AM must be installed and available in your PATH.
This adapter uses appman for user mode operations and am for system mode operations, following AM's convention where appman is the user-level command and am is the system-level command.
rustup target add wasm32-unknown-unknown
cargo build --release --target wasm32-unknown-unknownThe compiled plugin will be at target/wasm32-unknown-unknown/release/aeris_am_adapter.wasm.
mkdir -p ~/.local/share/aeris/plugins/am
cp target/wasm32-unknown-unknown/release/aeris_am_adapter.wasm ~/.local/share/aeris/plugins/am/plugin.wasm
cp manifest.toml ~/.local/share/aeris/plugins/am/Restart Aeris and the AM adapter will be loaded automatically.