From 0e3c9126091dd2ba1f61e53af65f176ca41920d2 Mon Sep 17 00:00:00 2001 From: Andrew Williams Date: Fri, 24 Feb 2023 17:05:42 +0000 Subject: [PATCH] Remove unused script --- .../Documents/Raycast Scripts/busylight.sh | 26 ------------------- 1 file changed, 26 deletions(-) delete mode 100755 raycast/Documents/Raycast Scripts/busylight.sh diff --git a/raycast/Documents/Raycast Scripts/busylight.sh b/raycast/Documents/Raycast Scripts/busylight.sh deleted file mode 100755 index 30a0797..0000000 --- a/raycast/Documents/Raycast Scripts/busylight.sh +++ /dev/null @@ -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 \ No newline at end of file