mirror of https://git.48k.eu/ogclient
Launch the graphical interface
This patch adds the launching of the browser that works as interface for the users in ogLive.more_events
parent
6f7ba325b8
commit
bf69d20966
|
@ -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
|
||||
|
|
4
main.py
4
main.py
|
@ -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()
|
||||
|
|
Loading…
Reference in New Issue