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
21 lines
581 B
Python
21 lines
581 B
Python
"""
|
|
GUI Screens Module
|
|
|
|
Contains all the GUI screen components for Jackify.
|
|
"""
|
|
|
|
from .main_menu import MainMenu
|
|
from .tuxborn_installer import TuxbornInstallerScreen
|
|
from .modlist_tasks import ModlistTasksScreen
|
|
from .install_modlist import InstallModlistScreen
|
|
from .configure_new_modlist import ConfigureNewModlistScreen
|
|
from .configure_existing_modlist import ConfigureExistingModlistScreen
|
|
|
|
__all__ = [
|
|
'MainMenu',
|
|
'TuxbornInstallerScreen',
|
|
'ModlistTasksScreen',
|
|
'InstallModlistScreen',
|
|
'ConfigureNewModlistScreen',
|
|
'ConfigureExistingModlistScreen'
|
|
] |