Add raycast scripts

This commit is contained in:
2021-01-30 15:30:03 +00:00
parent 512903aed6
commit ab6eb0e17c
3 changed files with 72 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
#!/usr/bin/osascript
# @raycast.title Toggle Wi-Fi
# @raycast.author Vincent Dörig
# @raycast.authorURL https://github.com/vincentdoerig
# @raycast.description Toggle your Wi-Fi connection.
# @raycast.icon images/wifi-dark.png
# @raycast.iconDark images/wifi.png
# @raycast.mode silent
# @raycast.packageName System
# @raycast.schemaVersion 1
# Wi-Fi interface, should normally be either `en0` or `en1`
# ⌥ + click the wifi icon in your menu bar to display the Wi-Fi interface name
set Interface to "en0"
set NetworkStatus to (do shell script "networksetup -getairportnetwork " & Interface)
if (NetworkStatus contains "off") then
# turn Wi-Fi on
do shell script "networksetup -setairportpower Interface on"
do shell script "echo Wi-Fi turned on"
else
# turn Wi-Fi off
do shell script "networksetup -setairportpower Interface off"
do shell script "echo Wi-Fi turned off"
end if