18 lines
298 B
Bash
Executable File
18 lines
298 B
Bash
Executable File
#!/bin/zsh
|
|
|
|
# Required parameters:
|
|
# @raycast.schemaVersion 1
|
|
# @raycast.title x
|
|
# @raycast.mode silent
|
|
|
|
# Optional parameters:
|
|
# @raycast.icon 🤖
|
|
|
|
# Documentation:
|
|
# @raycast.description Return bruno ✕
|
|
# @raycast.author Esteban Vincent
|
|
|
|
echo -n "✕" | pbcopy
|
|
echo "Copied to clipboard! ✅"
|
|
|