From 8baf0cf4dad7291cc645c536f475137947cdec08 Mon Sep 17 00:00:00 2001 From: codeking Date: Sat, 5 Apr 2025 07:31:01 +0200 Subject: [PATCH] Adopt additional revised naming conventions --- core/controllers/ApplicationController.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/controllers/ApplicationController.py b/core/controllers/ApplicationController.py index b4fb3ed..ca888ed 100644 --- a/core/controllers/ApplicationController.py +++ b/core/controllers/ApplicationController.py @@ -116,7 +116,7 @@ class ApplicationController: if shutil.which('Xephyr') is None: raise CommandNotFoundError('Xephyr') - virtual_display_process = subprocess.Popen(('Xephyr', '-ac', '-br', '-title', f'Hydra Veil - {profile.name or "Unnamed Profile"}', '-screen', profile.resolution, '-no-host-grab', display), stdout=subprocess.DEVNULL, stderr=subprocess.STDOUT) + virtual_display_process = subprocess.Popen(('Xephyr', '-ac', '-br', '-title', f'HydraVeil - {profile.name or "Unnamed Profile"}', '-screen', profile.resolution, '-no-host-grab', display), stdout=subprocess.DEVNULL, stderr=subprocess.STDOUT) start_time = time.time() timeout = float(10)