File: exaile_osx.py

package info (click to toggle)
exaile 4.1.4%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 16,428 kB
  • sloc: python: 39,651; javascript: 9,262; makefile: 319; sh: 138
file content (14 lines) | stat: -rwxr-xr-x 186 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/env python3

import sys


def main():
    sys.argv[1:1] = ['--startgui', '--no-dbus', '--no-hal']
    import exaile

    exaile.main()


if __name__ == '__main__':
    main()