How to create a PyQt application (with which the user interacts exclusively through the system tray (in the menu bar)) is hiding from the Mac OS X docking station?
This is what you are looking for: http://uselessthingies.wordpress.com/2008/05/18/an-app-without-dock-icon-and-menu-bar/
tl; dr: Package (py2app / pyinstaller (recommended)) your application; in your Info.plist application add <key>LSUIElement</key><string>1</string> .
<key>LSUIElement</key><string>1</string>
If you use py2app to package your application. Set the plist parameter as follows:
OPTIONS = { ... 'plist': {'LSUIElement': True}, ... }
Source: https://habr.com/ru/post/1346486/More articles:How can I create random DFA with uniform distribution? - algorithmThe angle that a moving ball bounces off an inert ball - javaMac Terminal Error '- bash: ./ js: Permission denied' - command-lineUsing perl inside Objective-C? - iosWPF print multiple pages with preview - printingHow to change font size to export pdf to datatables plug in - jqueryWhat is an easy way to git push another machine? - gitChanging network adapter settings to DHCP - windowsWhat is a period (.) In the F # method - f #Safari iOS update button. Can i use it? - iosAll Articles