mirror of
https://github.com/Omni-guides/Jackify.git
synced 2026-01-17 19:47:00 +01:00
Jackify provides native Linux support for Wabbajack modlist installation and management with automated Steam integration and Proton configuration. Key Features: - Almost Native Linux implementation (texconv.exe run via proton) - Automated Steam shortcut creation and Proton prefix management - Both CLI and GUI interfaces, with Steam Deck optimization Supported Games: - Skyrim Special Edition - Fallout 4 - Fallout New Vegas - Oblivion, Starfield, Enderal, and diverse other games Technical Architecture: - Clean separation between frontend and backend services - Powered by jackify-engine 0.3.x for Wabbajack-matching modlist installation
32 lines
1.3 KiB
Python
32 lines
1.3 KiB
Python
"""
|
|
Hoolamike Menu Handler for Jackify CLI Frontend
|
|
Extracted from src.modules.menu_handler.MenuHandler.show_hoolamike_menu()
|
|
"""
|
|
|
|
from jackify.shared.colors import COLOR_INFO, COLOR_PROMPT, COLOR_RESET
|
|
|
|
class HoolamikeMenuHandler:
|
|
"""
|
|
Handles the Hoolamike Tasks menu
|
|
Extracted from legacy MenuHandler class
|
|
"""
|
|
|
|
def __init__(self):
|
|
self.logger = None # Will be set by CLI when needed
|
|
|
|
def show_hoolamike_menu(self, cli_instance):
|
|
"""
|
|
LEGACY BRIDGE: Delegate to legacy menu handler until full backend migration
|
|
|
|
Args:
|
|
cli_instance: Reference to main CLI instance for access to handlers
|
|
"""
|
|
print(f"{COLOR_INFO}Hoolamike menu functionality has been extracted but needs migration to backend services.{COLOR_RESET}")
|
|
print(f"{COLOR_INFO}This will be implemented in Phase 2.3 (Menu Backend Integration).{COLOR_RESET}")
|
|
|
|
# LEGACY BRIDGE: Use the original menu handler's method
|
|
if hasattr(cli_instance, 'menu') and hasattr(cli_instance.menu, 'show_hoolamike_menu'):
|
|
cli_instance.menu.show_hoolamike_menu(cli_instance)
|
|
else:
|
|
print(f"{COLOR_INFO}Legacy menu handler not available - returning to main menu.{COLOR_RESET}")
|
|
input(f"{COLOR_PROMPT}Press Enter to continue...{COLOR_RESET}") |