47 lines
1.0 KiB
Python
47 lines
1.0 KiB
Python
#!/usr/bin/python
|
|
import time
|
|
import subprocess
|
|
from tendo import singleton
|
|
import monitors.dbus_autofill_monitor
|
|
import sys
|
|
import goldwarden
|
|
from threading import Thread
|
|
|
|
try:
|
|
subprocess.Popen(["python3", "/app/bin/background.py"], start_new_session=True)
|
|
except:
|
|
pass
|
|
|
|
is_hidden = "--hidden" in sys.argv
|
|
|
|
if not is_hidden:
|
|
try:
|
|
subprocess.Popen(["python3", "/app/bin/settings.py"], start_new_session=True)
|
|
except:
|
|
pass
|
|
|
|
try:
|
|
me = singleton.SingleInstance()
|
|
except:
|
|
exit()
|
|
|
|
def run_daemon():
|
|
# todo: do a proper check
|
|
if is_hidden:
|
|
time.sleep(20)
|
|
if not goldwarden.is_daemon_running():
|
|
goldwarden.run_daemon()
|
|
|
|
if not goldwarden.is_daemon_running():
|
|
print("daemon not running.. autostarting")
|
|
daemonThread = Thread(target=run_daemon)
|
|
daemonThread.start()
|
|
|
|
print("starting autofill monitor")
|
|
|
|
def on_autofill():
|
|
subprocess.Popen(["python3", "/app/bin/autofill.py"], start_new_session=True)
|
|
monitors.dbus_autofill_monitor.on_autofill = on_autofill
|
|
|
|
while True:
|
|
time.sleep(60) |