From 791b493c5d01897ed2d095381d87ae65631d6fc5 Mon Sep 17 00:00:00 2001 From: John Date: Sun, 21 Sep 2025 02:47:07 +0100 Subject: [PATCH] changed hydra veil fallback path --- gui/__main__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gui/__main__.py b/gui/__main__.py index 7750e51..7511b82 100755 --- a/gui/__main__.py +++ b/gui/__main__.py @@ -4986,7 +4986,7 @@ class Settings(Page): find_command = QLineEdit() find_command.setReadOnly(True) - find_command.setText(f"find ~ -name '{os.environ.get('APPIMAGE') or 'hydra-veil-x86_64.AppImage'}' 2>/dev/null") + find_command.setText(f"find ~ -name '{os.environ.get('APPIMAGE') or '/path/to/hydra-veil'}' 2>/dev/null") find_command.setStyleSheet(f""" QLineEdit {{ color: white; @@ -5278,7 +5278,7 @@ class Settings(Page): if profile and isinstance(profile, SystemProfile): - app_path = os.environ.get('APPIMAGE') or "./hydra-veil-x86_64.AppImage" + app_path = os.environ.get('APPIMAGE') or "/path/to/hydra-veil" self.cli_command.setText(f"{app_path} --cli profile enable -i {profile_id}") self.cli_copy_button.setEnabled(True) self.cli_execute_button.setEnabled(True)