How to remove Skype 8’s icon from the menu bar

menu barskype

Skype 8 does not allow to remove its icon from the menu bar in their settings anymore. How can this be done?

Best Answer

Since Skype 8 is an Electron app you can modify its source code. Run this command in Terminal:

LC_ALL=C sed -i '' -e "s/this._tray =/\\/\\/is._tray =/" -e "s/this._trayBaseToolTip =/return;\\/\\/yBaseToolTip =/" /Applications/Skype.app/Contents/Resources/app.asar

It will prevent the menu bar icon from being created.