refactor: migrate all scripts and utils from bash to zsh (#3)

This commit is contained in:
Esteban Vincent
2026-05-19 14:57:38 +02:00
committed by GitHub
parent 071f1df0ba
commit 6198cdb0e1
9 changed files with 28 additions and 28 deletions
+17
View File
@@ -0,0 +1,17 @@
#!/bin/zsh
# 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"