Skip to content

Instantly share code, notes, and snippets.

@knu
Last active September 13, 2024 15:52
Show Gist options
  • Save knu/7ad984a4fe49e7a6c62b3a3ae9e62eeb to your computer and use it in GitHub Desktop.
Save knu/7ad984a4fe49e7a6c62b3a3ae9e62eeb to your computer and use it in GitHub Desktop.
Audio Input fixer for AirPods users

Audio Input fixer for AirPods users

This is a Hammerspoon snippet to fix the common problem with the AirPods where connecting AirPods to a MacBook forcibly switches the audio input device to the AirPods mic when you have a better mic on it.

Requirements

brew install hammerspoon

Installation

Configure Hammerspoon like so:

do
  local pri = function (device)
    if device:uid():match("^AppleUSBAudioEngine:.*Mic") then
      return 2
    elseif device:uid() == "BuiltInMicrophoneDevice" then
      return 1
    else
      return 0
    end
  end
  hs.audiodevice.watcher.setCallback(
    function (event)
      if event == "dIn " and hs.audiodevice.defaultInputDevice():name():match("AirPods") then
        local devices = hs.audiodevice.allInputDevices()
        table.sort(devices, function (a, b)
            return pri(a) > pri(b)
        end)
        local device = devices[1]
        device:setDefaultInputDevice()
      end
    end
  )
  hs.audiodevice.watcher.start()
end

Author and License

Copyright (c) 2022-2024 Akinori MUSHA

All rights reserved.

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

  1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
  2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.

THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

do
local pri = function (device)
if device:uid():match("^AppleUSBAudioEngine:.*Mic") then
return 2
elseif device:uid() == "BuiltInMicrophoneDevice" then
return 1
else
return 0
end
end
hs.audiodevice.watcher.setCallback(
function (event)
if event == "dIn " and hs.audiodevice.defaultInputDevice():name():match("AirPods") then
local devices = hs.audiodevice.allInputDevices()
table.sort(devices, function (a, b)
return pri(a) > pri(b)
end)
local device = devices[1]
device:setDefaultInputDevice()
end
end
)
hs.audiodevice.watcher.start()
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment