mirror of
https://github.com/Omni-guides/Jackify.git
synced 2026-01-17 19:47:00 +01:00
Sync from development - prepare for v0.1.2
This commit is contained in:
@@ -51,9 +51,15 @@ def _clear_screen_fallback():
|
||||
|
||||
def print_jackify_banner():
|
||||
"""Print the Jackify application banner"""
|
||||
print("""
|
||||
from jackify import __version__
|
||||
version_text = f"Jackify CLI ({__version__})"
|
||||
# Center the version text in the banner (72 chars content width)
|
||||
padding = (72 - len(version_text)) // 2
|
||||
centered_version = " " * padding + version_text + " " * (72 - len(version_text) - padding)
|
||||
|
||||
print(f"""
|
||||
╔════════════════════════════════════════════════════════════════════════╗
|
||||
║ Jackify CLI (pre-alpha) ║
|
||||
║{centered_version}║
|
||||
║ ║
|
||||
║ A tool for installing and configuring modlists ║
|
||||
║ & associated utilities on Linux ║
|
||||
|
||||
Reference in New Issue
Block a user