Moved some raycast scripts to standard scripts

Signed-off-by: Marcus Noble <github@marcusnoble.co.uk>
This commit is contained in:
2026-09-17 07:38:45 +01:00
parent bf9d4c5089
commit 55991c13cb
3 changed files with 35 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
#!/usr/bin/osascript
on getMicrophoneVolume()
input volume of (get volume settings)
end getMicrophoneVolume
on disableMicrophone()
set volume input volume 0
log "Microphone turned off 🔴"
display notification "Microphone turned off 🔴" with title "🎙️ Microphone"
end disableMicrophone
on enableMicrophone()
set volume input volume 100
log "Microphone turned on 🟢"
display notification "Microphone turned on 🟢" with title "🎙️ Microphone"
end enableMicrophone
if getMicrophoneVolume() is greater than 0 then
disableMicrophone()
else
enableMicrophone()
end if