feat: add initial raycast scripts collection

This commit is contained in:
Esteban Vincent
2026-05-19 11:05:34 +02:00
commit 43968bc704
6 changed files with 202 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
#!/bin/bash
# Required parameters:
# @raycast.schemaVersion 1
# @raycast.title Random No
# @raycast.mode silent
# Optional parameters:
# @raycast.icon ❌
# Documentation:
# @raycast.description Get a random rejection reason from No-as-a-Service
# @raycast.author Esteban Vincent
REASON=$(curl -s https://naas.isalman.dev/no | sed -n 's/.*"reason":"\([^"]*\)".*/\1/p')
echo -n "$REASON" | pbcopy
echo "$REASON"