mirror of
https://github.com/nikdoof/dotfiles.git
synced 2025-12-13 17:52:26 +00:00
Remove unused script
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user