feat: add initial raycast scripts collection
This commit is contained in:
Executable
+16
@@ -0,0 +1,16 @@
|
||||
#!/bin/bash
|
||||
|
||||
# Required parameters:
|
||||
# @raycast.schemaVersion 1
|
||||
# @raycast.title Get Public IPv4
|
||||
# @raycast.mode silent
|
||||
|
||||
# Optional parameters:
|
||||
# @raycast.icon 🌐
|
||||
|
||||
# Documentation:
|
||||
# @raycast.author Esteban Vincent
|
||||
|
||||
PUBLIC_IP=$(curl -s https://api64.ipify.org)
|
||||
echo -n "$PUBLIC_IP" | pbcopy
|
||||
echo "Copied to clipboard! ✅"
|
||||
Reference in New Issue
Block a user