Mac OS X menu item for quickly enabling/disabling HTTP proxy
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 regels
272 B

  1. from distutils.core import setup
  2. from glob import glob
  3. import py2app, sys, os, commands
  4. setup(
  5. app = [ 'ToggleProxy.py' ],
  6. options = dict(py2app = dict(
  7. plist = dict(
  8. LSBackgroundOnly = True
  9. )
  10. ))
  11. )