Introduces a new `core/applications` QML/C++ module (`Nebula.Applications`) to discover `.desktop` entries, expose filterable application models, and launch installed apps safely from the shell. The desktop launcher now uses real installed apps with themed icon loading and fallback glyphs, adds output-aware surface sizing via `OutputTracker`, and wires in image/icon providers. It also adds VMware-focused Sway/shell wrapper scripts, updates Sway config/session env defaults, and refreshes README docs to document the new development flow and Desktop 0.1 behavior.
6 lines
230 B
Bash
6 lines
230 B
Bash
#!/bin/sh
|
|
# Convenience wrapper; the canonical VMware nebula-shell launcher is
|
|
# scripts/run-nebula-vm.sh
|
|
script_dir=$(CDPATH= cd -- "$(dirname -- "$0")" && pwd)
|
|
exec /bin/sh "${script_dir}/../../../scripts/run-nebula-vm.sh" "$@"
|