Add bin/omarchy-install wrapper (shipped via omarchy-installer)

Brings back the omarchy-install command as a 5-line shell wrapper that
just exec's /usr/share/omarchy/install.sh. Not the 258-line Python
refactor-poc version — that one stays dropped.

The omarchy package keeps excluding bin/omarchy-install exactly so it
doesn't conflict with the omarchy-installer package's copy at /usr/bin.
All 25+ user-facing omarchy-install-* commands (gaming, browser, etc.)
still ship via omarchy.
This commit is contained in:
Ryan Hughes
2026-06-04 18:34:35 -04:00
parent 7fffc5f3c4
commit 26b9ce5f96
+7
View File
@@ -0,0 +1,7 @@
#!/bin/bash
# omarchy:summary=Run the Omarchy installer (shipped via omarchy-installer)
# omarchy:group=install
# omarchy:args=[install.sh args]
exec bash "$OMARCHY_PATH/install.sh" "$@"