每次從手機(jī)切換耳機(jī)到電腦都要手動去點(diǎn)擊一下,很麻煩,找到了通過快捷鍵切換的方法,
該方法適用于其他藍(lán)牙耳機(jī)
1 .安裝BluetoothConnector:
brew install bluetoothconnector
安裝成功后打開Terminals輸入以下命令,查看藍(lán)牙耳機(jī)mac地址:
bluetoothconnector
返回本機(jī)連接的藍(lán)牙設(shè)備列表
Get the MAC address from the list below (if your device is missing, pair it with your computer first):
f8-70-c0-7a-eb-bf - alp的AirPods
......
輸入下列命令進(jìn)行測試:
BluetoothConnector f8-70-c0-7a-eb-bf --notify
執(zhí)行成功就會彈出通知,如果已經(jīng)連接則會斷開,記得把mac地址改為你自己的藍(lán)牙設(shè)備
2.設(shè)置鍵盤快捷鍵
1.打開“啟動臺”-》“other”-》“自動操作”
新建-》快速操作
把運(yùn)行AppleScript拖動到工作路程,輸入以下代碼
on run {input, parameters}v
do shell script "/usr/local/bin/BluetoothConnector f8-70-c0-7a-eb-bf --notify"
return input
end run
測試運(yùn)行成功,保存,名稱可以自己命名
2.設(shè)置鍵盤快捷鍵
打開“系統(tǒng)偏好”-》“鍵盤”-》“快捷鍵”-》“服務(wù)”-》找到剛才保存的服務(wù),設(shè)置你想要的快捷鍵.至此大功告成