From 26b9ce5f960195620b99fdfb62ab2fe27c78146d Mon Sep 17 00:00:00 2001 From: Ryan Hughes Date: Wed, 20 May 2026 20:46:03 -0400 Subject: [PATCH] Add bin/omarchy-install wrapper (shipped via omarchy-installer) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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. --- bin/omarchy-install | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100755 bin/omarchy-install diff --git a/bin/omarchy-install b/bin/omarchy-install new file mode 100755 index 00000000..a2275d75 --- /dev/null +++ b/bin/omarchy-install @@ -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" "$@"