8 lines
166 B
Python
Executable file
8 lines
166 B
Python
Executable file
#!/usr/bin/env python3
|
|
# Opens auth ui if requested, otherwise starts normal ui
|
|
import sys
|
|
|
|
if "--start-auth-ui" in sys.argv:
|
|
import authsticky
|
|
else:
|
|
import window
|