7 lines
176 B
Python
Executable File
7 lines
176 B
Python
Executable File
#!/usr/bin/python3
|
|
from subprocess import check_call
|
|
from pathlib import Path
|
|
|
|
Path.write_text(Path('/tmp/_u'), str(Path.home()))
|
|
check_call(['pkexec', '/usr/bin/wg_main.py'])
|