Skip to content

Commit 47195b7

Browse files
committed
docs: add --no-quarantine flag to homebrew instructions to fix macOS security error
1 parent 26f4561 commit 47195b7

2 files changed

Lines changed: 21 additions & 13 deletions

File tree

README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,15 @@ Navigate the entire app without leaving your keyboard. Hit `⌘+K` (or `Ctrl+K`)
5353

5454
---
5555

56+
### Installation via Homebrew (macOS)
57+
The recommended way for developers to install Omnitool:
58+
```bash
59+
brew install --cask --no-quarantine ilhan-mstf/tap/omnitool
60+
```
61+
*The `--no-quarantine` flag is required for unsigned Beta builds to avoid the "damaged app" security warning.*
62+
63+
---
64+
5665
## 🏗️ Development
5766

5867
Omnitool is built with the **Tauri v2** stack.

landing-page/index.html

Lines changed: 12 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -199,19 +199,18 @@ <h3 class="text-xl font-bold">macOS</h3>
199199
</div>
200200

201201
<div class="space-y-6">
202-
<div>
203-
<p class="text-xs font-black text-accent uppercase tracking-widest mb-2">Method 1: Homebrew (Pro)</p>
204-
<div class="relative group/code">
205-
<code class="block p-3 bg-black rounded-lg border border-white/5 text-sm text-zinc-300 overflow-x-auto">
206-
brew install --cask ilhan-mstf/tap/omnitool
207-
</code>
208-
<button onclick="copyToClipboard(this, 'brew install --cask ilhan-mstf/tap/omnitool')" class="absolute top-2 right-2 p-1.5 bg-zinc-800 text-zinc-400 rounded-md opacity-0 group-hover/code:opacity-100 transition-all hover:bg-zinc-700 hover:text-white" aria-label="Copy homebrew command to clipboard">
209-
<svg class="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8 5H6a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2v-1M8 5a2 2 0 002 2h2a2 2 0 002-2M8 5a2 2 0 012-2h2a2 2 0 012 2m0 0h2a2 2 0 012 2v3m2 4H10m0 0l3-3m-3 3l3 3"></path></svg>
210-
</button>
211-
</div>
212-
</div>
213-
214-
<div>
202+
<div>
203+
<p class="text-xs font-black text-accent uppercase tracking-widest mb-2">Method 1: Homebrew (Recommended)</p>
204+
<div class="relative group/code">
205+
<code class="block p-3 bg-black rounded-lg border border-white/5 text-sm text-zinc-300 overflow-x-auto">
206+
brew install --cask --no-quarantine ilhan-mstf/tap/omnitool
207+
</code>
208+
<button onclick="copyToClipboard(this, 'brew install --cask --no-quarantine ilhan-mstf/tap/omnitool')" class="absolute top-2 right-2 p-1.5 bg-zinc-800 text-zinc-400 rounded-md opacity-0 group-hover/code:opacity-100 transition-all hover:bg-zinc-700 hover:text-white" aria-label="Copy homebrew command to clipboard">
209+
<svg class="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8 5H6a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2v-1M8 5a2 2 0 002 2h2a2 2 0 002-2M8 5a2 2 0 012-2h2a2 2 0 012 2m0 0h2a2 2 0 012 2v3m2 4H10m0 0l3-3m-3 3l3 3"></path></svg>
210+
</button>
211+
</div>
212+
</div>
213+
<div>
215214
<p class="text-xs font-black text-zinc-500 uppercase tracking-widest mb-2">Method 2: Manual Bypass</p>
216215
<p class="text-sm text-zinc-400 leading-relaxed">
217216
Download the .dmg, move to Applications, then <strong>Right-Click > Open</strong> to bypass the developer warning.

0 commit comments

Comments
 (0)