Files
raycast-scripts/Utils/collima-stop-start.sh
2024-07-23 11:42:00 +02:00

31 lines
603 B
Bash
Executable File

#!/bin/bash
# Required parameters:
# @raycast.schemaVersion 1
# @raycast.title Colima Stop Start
# @raycast.mode silent
# @raycast.packageName MrRaph_
#
# Optional parameters:
# @raycast.icon 🌎
# @raycast.argument1 { "type": "text", "placeholder": "stop/start" }
#
# Documentation:
# @raycast.description This script stops or starts Colima
# @raycast.author MrRaph_
# @raycast.authorURL https://git.mrraph.fr
message="Error"
case ${1} in
start)
colima start
message="Colima Started !"
;;
stop)
colima stop
message="Colima Stopped !"
;;
esac
echo $message