How can I delete the Boom application output device from my system?

25

3

I uninstalled the Boom application, I can’t find any files related to Boom in my system—maybe I am missing something?—but I still have this in my output devices configuration:

enter image description here

How can I delete the Boom output device in those configurations?

marcpt

Posted 2015-01-23T19:01:08.570

Reputation: 353

Answers

4

  • Check for BoomDevice.kext in /System/Library/Extensions.  If present, delete it.
  • Delete Boom app [if you didn't already].
  • Reboot.
  • Confirm that BoomDevice has been removed from System Sound Preferences.

Tetsujin

Posted 2015-01-23T19:01:08.570

Reputation: 22 456

51

Open Terminal app and run the following command(s)...

  • To remove BoomDevice
sudo kextunload -b com.globaldelight.driver.BoomDevice
  • To remove Boom2Device
sudo kextunload -b com.globaldelight.driver.Boom2Device

This should do the trick and you even don’t need to reboot your Mac.

Dipak G.

Posted 2015-01-23T19:01:08.570

Reputation: 611

1this has bugged me for a long time, fix totally works! – subelsky – 2016-07-05T16:27:16.700

FYI it's now two years later and somehow that driver keeps came back. I re-ran this command also Tom's command from another answer (rm -rf ~/Music/Boom{,\ 2}) - fingers-crossed! – subelsky – 2018-11-07T20:42:35.067

23

Execute the following commands in a (bash) terminal window.

To uninstall Boom (v1) and remove BoomDevice:

killall Boom
sudo kextunload -b com.globaldelight.driver.BoomDevice
sudo rm -rf /Applications/Boom.app /Library/Extensions/BoomDevice.kext

To uninstall Boom2 and remove Boom2Device:

killall Boom\ 2
sudo kextunload -b com.globaldelight.driver.Boom2Device
sudo rm -rf /Applications/Boom\ 2.app /Library/Extensions/Boom2Device.kext
killall com.globaldelight.Boom2Daemon

You do not need to reboot, the effect is immediate.

Further, to wipe out Boom's profile(s)/config settings (e.g. if you don't plan on reinstalling Boom in future, or want to have a clean slate if you do decide to), you can finally execute:

rm -rf ~/Music/Boom{,\ 2}

Tom

Posted 2015-01-23T19:01:08.570

Reputation: 382

1Jan 2018 - Updated this to include removal of an additional Boom2 service, and removal of profile/configuration data – Tom – 2018-01-09T13:57:00.313

4

Tetsujin's answer is not correct actually, the Kernel Extension file is not in /System/Library/Extensions but in /Library/Extensions and it's called Boom2Device.kext – you have to delete this one to get rid of the Boom2Device.

Marcel_75

Posted 2015-01-23T19:01:08.570

Reputation: 49

3

You can use Uninstall Boom Device script from it's creators. It simply runs these commands:

sudo kextunload -b com.globaldelight.driver.BoomDevice
sudo rm -rf /System/Library/Extensions/BoomDevice.kext
sudo rm -rf /Library/Extensions/BoomDevice.kext

ecabuk

Posted 2015-01-23T19:01:08.570

Reputation: 231

Use https://www.globaldelight.com/boom3d/mas-content/uninstall.php for uninstalling Boom 3D by the way. It's also from the developer.

– johan – 2020-02-02T18:12:00.073