blob: 35cde89e0aaec565f6e2e947ce3793a0c47b72b9 (
plain)
1
2
3
4
5
6
7
8
9
|
#!/bin/bash
MIC_VOLUME=$(osascript -e 'input volume of (get volume settings)')
if [[ $MIC_VOLUME -eq 0 ]]; then
sketchybar -m --set mic icon=
elif [[ $MIC_VOLUME -gt 0 ]]; then
sketchybar -m --set mic icon=
fi
|