mirror of https://git.48k.eu/ogclient
Launch browser only in linux configuration
parent
7f646fc468
commit
058c2b5413
3
main.py
3
main.py
|
@ -26,7 +26,8 @@ def main():
|
|||
url = ogconfig.get_value_section('opengnsys', 'url')
|
||||
mode = ogconfig.get_value_section('opengnsys', 'mode')
|
||||
|
||||
proc = subprocess.Popen(["browser", "-qws", url])
|
||||
if mode == 'linux':
|
||||
proc = subprocess.Popen(["browser", "-qws", url])
|
||||
|
||||
client = ogClient(ip, int(port), mode)
|
||||
client.connect()
|
||||
|
|
Loading…
Reference in New Issue