0
0
Fork 0
mirror of https://github.com/boltgolt/howdy.git synced 2024-09-19 09:51:19 +02:00
howdy/howdy-gtk/src/init.py

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