diff --git a/main.py b/main.py index aa58ca0..f19520c 100755 --- a/main.py +++ b/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()