diff --git a/src/download.html b/src/download.html
index 7b27d0e..4c0d414 100644
--- a/src/download.html
+++ b/src/download.html
@@ -74,6 +74,11 @@
⚠️ Only choose plugins you need and trust
+
+ ⚠️ Run the following against the downloaded binary:
+ xattr -d com.apple.quarantine
+
+
diff --git a/src/resources/css/download.css b/src/resources/css/download.css
index 44e5b75..adca9bf 100644
--- a/src/resources/css/download.css
+++ b/src/resources/css/download.css
@@ -62,6 +62,10 @@ body {
background: #333;
}
+#darwin-warning {
+ display: none;
+}
+
input:disabled,
select:disabled,
#optional-packages.disabled {
diff --git a/src/resources/js/download.js b/src/resources/js/download.js
index 1863ad6..f8c12a4 100644
--- a/src/resources/js/download.js
+++ b/src/resources/js/download.js
@@ -245,7 +245,7 @@ function getDownloadLink() {
qs.append("p", p);
});
-
+ $("#darwin-warning").toggle(os === "darwin");
var idempotencyKey = Math.floor(Math.random() * 99999999999999);
qs.append("idempotency", idempotencyKey);