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)