Launch 1Password installer when missing

This commit is contained in:
David Heinemeier Hansson
2026-07-22 16:10:45 -07:00
parent 1e928d58db
commit 36329cee7a
3 changed files with 57 additions and 1 deletions
+11
View File
@@ -0,0 +1,11 @@
#!/bin/bash
# omarchy:summary=Launch 1Password or start its installer when missing.
set -e
if omarchy-cmd-present 1password; then
exec setsid uwsm-app -- 1password
else
exec omarchy-launch-floating-terminal-with-presentation omarchy-install-service-1password
fi