4a7c668549
Since we have proper python package, use it instead of hacky one-file package. This will ease installation and packaging, including switching to python3.
8 lines
118 B
Python
Executable File
8 lines
118 B
Python
Executable File
#!/usr/bin/python
|
|
|
|
from qubesagent.xdg import launch
|
|
import sys
|
|
|
|
if __name__ == '__main__':
|
|
launch(*sys.argv[1:])
|