Response from Ondesoft:
If you want to remove the audiojingle, please follow below steps:
Open Applications >> Utilities >> Terminal, and type sudo, press the space key, type sh, press the space key.
Download attached uninstall.sh file, drag the file to Terminal, then you can see
sudo sh /XXX/XXX/XXX/XXX/uninstall.sh, press the Enter key.
You need to enter your system password, and then press the Enter key.
I can't attached the actual script, but here is the code snippet. Just copy this text below and save it to a file called uninstall.sh via a text editor, like TextEdit.
#!/bin/bash
# remove driver
DRIVER_NAME="Audiojingle.driver"
DRIVER_INSTALL_PATH="/Library/Audio/Plug-Ins/HAL/${DRIVER_NAME}"
if [ -d "${DRIVER_INSTALL_PATH}" ]; then
/bin/rm -rf "${DRIVER_INSTALL_PATH}" || exit 1
fi
# remove helper plist
LAUNCHD_PLIST_INSTALL_PATH="/Library/LaunchDaemons"
LAUNCHD_PLIST_INSTALL_PATH_BACKUP="/Library/LaunchAgents"
LAUNCHD_PLIST_FILENAME="com.audiojinglex.soundtree.agent.plist"
LAUNCHD_PLIST="${LAUNCHD_PLIST_INSTALL_PATH}/${LAUNCHD_PLIST_FILENAME}"
LAUNCHD_PLIST_BACKUP="${LAUNCHD_PLIST_INSTALL_PATH_BACKUP}/${LAUNCHD_PLIST_FILENAME}"
# romove the plist.
if [ -e "${LAUNCHD_PLIST}" ]; then
/bin/rm -f "${LAUNCHD_PLIST}"
fi
if [ -e "${LAUNCHD_PLIST_BACKUP}" ]; then
/bin/rm -f "${LAUNCHD_PLIST_BACKUP}"
fi
#/usr/bin/killall -u "_coreaudiod" "coreaudiod"
/bin/launchctl kill SIGTERM system/com.apple.audio.coreaudiod || /usr/bin/killall coreaudiod
echo "restart coreaudio"
sleep 2