Adopt additional revised naming conventions

This commit is contained in:
codeking 2025-04-05 07:31:01 +02:00
parent d44f4d77d0
commit 8baf0cf4da

View file

@ -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)