Remove unused script

This commit is contained in:
2023-02-24 17:05:42 +00:00
parent 64100893d3
commit 0e3c912609

View File

@@ -1,26 +0,0 @@
#!/bin/bash
# Required parameters:
# @raycast.schemaVersion 1
# @raycast.title Set busylight status
# @raycast.mode silent
# @raycast.packageName Browsing
# Optional parameters:
# @raycast.icon 🚦
# Documentation:
# @raycast.author Andrew Williams
# @raycast.authorURL https://github.com/nikdoof
# @raycast.description Sets your busylight status
# @raycast.argument1 { "type": "text", "placeholder": "available" }
status=$1
curl -s "http://10.101.2.167/${status}" > /dev/null
if [[ $? -ne 0 ]]; then
echo "Something went wrong!"
else
echo "Done!"
fi