This commit is contained in:
2026-01-21 20:35:19 -08:00
parent 06af9b30ac
commit d94e321148
13 changed files with 19 additions and 180 deletions

View File

@@ -123,17 +123,17 @@ LOGO = r"""
██║╚██╔╝██║██╔══╝ ██║ ██║██╔══╝ ██║██╔══██║ ██║╚██╔╝██║██╔══██║██║ ██║██║╚██╗██║██╔══██║
██║ ╚═╝ ██║███████╗██████╔╝███████╗██║██║ ██║ ██║ ╚═╝ ██║██║ ██║╚██████╗██║██║ ╚████║██║ ██║
╚═╝ ╚═╝╚══════╝╚═════╝ ╚══════╝╚═╝╚═╝ ╚═╝ ╚═╝ ╚═╝╚═╝ ╚═╝ ╚═════╝╚═╝╚═╝ ╚═══╝╚═╝ ╚═╝
< ΓΝΩΘΙ ΣΕΑΥΤΟΝ | TEMET NOSCE | KNOW THYSELF >
0123456789123456789123456789123456789123456789
0246813579246813579246813579246813579246813579
0369369369369369369369369369369369369369369369
0483726159483726159483726159483726159483726159
0516273849516273849516273849516273849516273849
0639639639639639639639639639639639639639639639
0753816429753816429753816429753816429753816429
0876543219876543219876543219876543219876543219
0999999999999999999999999999999999999999999999
< ALL WITHIN ARE KNOW | ABLE ALL ARE WITHOUT >
< ΓΝΩΘΙ ΣΕΑΥΤΟΝ | TEMET NOSCE | KNOW THYSELF >
0123456789123456789123456789123456789123456789
0246813579246813579246813579246813579246813579
0369369369369369369369369369369369369369369369
0483726159483726159483726159483726159483726159
0516273849516273849516273849516273849516273849
0639639639639639639639639639639639639639639639
0753816429753816429753816429753816429753816429
0876543219876543219876543219876543219876543219
0999999999999999999999999999999999999999999999
< ALL WITHIN ARE KNOW | ABLE ALL ARE WITHOUT >
"""
@@ -933,10 +933,14 @@ def main() -> int:
# Clear the terminal before showing logo
os.system('cls' if os.name == 'nt' else 'clear')
term_width = shutil.get_terminal_size((80, 20)).columns
logo_lines = LOGO.strip().splitlines()
logo_lines = LOGO.strip('\n').splitlines()
max_line_width = 0
for line in logo_lines:
max_line_width = max(max_line_width, len(line.rstrip()))
padding = ' ' * max((term_width - max_line_width) // 2, 0)
print("\n" * 2)
for line in logo_lines:
print(line.center(term_width))
print(f"{padding}{line.rstrip()}")
print("\n")
# Determine total steps for progress bar
@@ -1486,6 +1490,7 @@ if (Test-Path (Join-Path $repo 'CLI.py')) {
_install_user_shims(repo_root)
if not args.quiet:
os.system('cls' if os.name == 'nt' else 'clear')
print()
print("command: mm")
print(".config")