diff options
author | Javier Sánchez Parra <jsanchez@soleta.eu> | 2020-02-24 14:31:31 +0100 |
---|---|---|
committer | Alvaro Neira Ayuso <aneira@soleta.eu> | 2020-02-24 14:53:42 +0100 |
commit | bf69d20966ba71c710078f1b8d790b022551154e (patch) | |
tree | 771b4159d8a0506f4ae63e7b1ffae8641a1140d6 | |
parent | 6f7ba325b818ae6fcfd373566afdb72eb4f55d55 (diff) |
Launch the graphical interface
This patch adds the launching of the browser that works as interface for
the users in ogLive.
-rw-r--r-- | cfg/ogagent.cfg | 1 | ||||
-rw-r--r-- | main.py | 4 |
2 files changed, 5 insertions, 0 deletions
diff --git a/cfg/ogagent.cfg b/cfg/ogagent.cfg index c1bb8c2..34939d2 100644 --- a/cfg/ogagent.cfg +++ b/cfg/ogagent.cfg @@ -1,5 +1,6 @@ [opengnsys] ip=127.0.0.1 port=1234 +url=https://127.0.0.1/opengnsys/varios/menubrowser.php # Log Level, if ommited, will be set to INFO log=DEBUG @@ -6,6 +6,7 @@ # Free Software Foundation, version 3. # +import subprocess from src.ogClient import * from src.ogConfig import * from signal import signal, SIGPIPE, SIG_DFL @@ -19,6 +20,9 @@ def main(): ip = ogconfig.get_value_section('opengnsys', 'ip') port = ogconfig.get_value_section('opengnsys', 'port') + url = ogconfig.get_value_section('opengnsys', 'url') + + proc = subprocess.Popen(["browser", "-qws", url]) client = ogClient(ip, int(port)) client.connect() |