如何从Mac OS X dock隐藏PyQt应用程序的图标

时间:2011-04-04 00:19:57

标签: python macos pyqt dock

如何制作PyQt应用程序(用户仅通过the system tray(在菜单栏中)与之交互)将自己隐藏在Mac OS X基座上?

2 个答案:

答案 0 :(得分:4)

您正在寻找:http://uselessthingies.wordpress.com/2008/05/18/an-app-without-dock-icon-and-menu-bar/

tl; dr:包(py2app / pyinstaller(推荐))你的应用程序;在您应用的Info.plist中添加<key>LSUIElement</key><string>1</string>

答案 1 :(得分:2)

如果使用py2app打包您的应用程序。像这样设置plist选项:

OPTIONS = {
              ...
              'plist': {'LSUIElement': True},
              ...
          }