8 lines
119 B
Python
Executable File
8 lines
119 B
Python
Executable File
#!/usr/bin/python3
|
|
|
|
from qubesagent.xdg import launch
|
|
import sys
|
|
|
|
if __name__ == '__main__':
|
|
launch(*sys.argv[1:])
|