Showing the Toothfairy Icon only when my Airpods Pro are Connected
Recently Bartender 4 released with a couple of features that I was super stoked about.
One of those updates was the ability to add custom rules for showing/hiding icons based. Wanting to play with this more I created a watcher shell script for showing/hiding the ToothFairy icon.
The end result of this script is that when my Airpods Pro are connected to the device, the toothfairy icon will appear in the menu bar. Once the Airpods Pro are disconnected the icon will go back to being hidden. This means that I can quickly tell when my AirPods Pro are connected to my machine (even if they are also connected to my phone or iPad).
The Script
I found the command for getting your Bluetooth settings just tabbing through terminal commands.
AP_STAT=$(system_profiler SPBluetoothDataType | grep -A9 "Jay’s AirPods Pro:")
This saves the information for any bluetooth device named Jay's AirPods Pro to AP_STAT
(Airpods Status).
I got help from this similar idea from Godbout's Alfred Workflow.
echo $AP_STAT | awk '/Connected: Yes/{print 1}'
echo prints the data and awk is a text manipulation command. It looks for the pattern Connnected: Yes
and returns a 1 if it is found (otherwise it returns nothing).
Bartender looks for a True value which 1
is.
Here's the whole script
AP_STAT=$(system_profiler SPBluetoothDataType | grep -A9 "Jay’s AirPods Pro:")
echo $AP_STAT | awk '/Connected: Yes/{print 1}'
Both ToothFairy and Bartender 4 (available on Big Sur ONLY) are both a part of SetApp (Affiliate Link)