Prettier ASCII art

This commit is contained in:
Micah Lee 2021-04-25 19:23:10 -04:00
parent 470fb2bda3
commit dac508d06e
No known key found for this signature in database
GPG Key ID: 403C2657CD994F73
2 changed files with 33 additions and 48 deletions

View File

@ -46,54 +46,36 @@ def main(cwd=None):
# Display OnionShare banner # Display OnionShare banner
print(f"OnionShare {common.version} | https://onionshare.org/") print(f"OnionShare {common.version} | https://onionshare.org/")
reset = "\033[0m" print(common.C_DARKPURPLE)
purple = "\33[95m" print(" ▄▄█████████▄▄ ")
print(purple) print(" ▄███████████████████▄ ")
print(" @@@@@@@@@ ") print(" ▄█████████████████████████▄ ")
print(" @@@@@@@@@@@@@@@@@@@ ") print(" █████████████████████████████ ")
print(" @@@@@@@@@@@@@@@@@@@@@@@@@ ") print(" ▀████████████████████████████▄ ")
print(" @@@@@@@@@@@@@@@@@@@@@@@@@@@@@ ") print(" ▄▄ ▀██████▀▀▀ ▀▀▀█████████████ ")
print( print(" ▄████▄ ▀█▀ ▀███████████ ")
" @@@@@@@@@@@@@@@@@@@@@@@@@@@@@ ___ _ " print(" ▄████████▄ ██████████ ")
) print(" ▄████████████▄ ██████████ ")
print( print(" ▄████████████████▄ █████████ ")
" @@@@@@ @@@@@@@@@@@@@ / _ \\ (_) " print(" █████████ ▀████████████████▀ ")
) print(" ██████████ ▀████████████▀ ")
print( print(" ██████████ ▀████████▀ ")
" @@@@ @ @@@@@@@@@@@ | | | |_ __ _ ___ _ __ " print(" ███████████▄ ▄█▄ ▀████▀ ")
) print(" █████████████▄▄▄ ▄▄▄██████▄ ▀▀ ")
print( print(" █████████████████████████████▄ ")
" @@@@@@@@ @@@@@@@@@@ | | | | '_ \\| |/ _ \\| '_ \\ " print(" ▀█████████████████████████████ ")
) print(" ▀█████████████████████████ ")
print( print(" ▀███████████████████ ")
" @@@@@@@@@@@@ @@@@@@@@@@ \\ \\_/ / | | | | (_) | | | | " print(" ▀▀█████████▀▀ ")
) print("")
print( print(common.C_LIGHTPURPLE)
" @@@@@@@@@@@@@@@@ @@@@@@@@@ \\___/|_| |_|_|\\___/|_| |_| " print(" ▄██▄ ███ █ ")
) print(" █ █ █▀ █ ")
print( print(" █ █ ▀ █▄▄ █ ")
" @@@@@@@@@ @@@@@@@@@@@@@@@@ _____ _ " print(" █ █ █▄█▄ █ ▄██▄ █▄█▄ ▀▀█ █▄█▄ ▄██▄ █▄█▄ ▄██▄ ")
) print(" █ █ █▀ █ █ █ █ █▀ █ ▄█ █▀ █ █ █ █▀ █▄▄▀ ")
print( print(" ▀██▀ █ █ █ ▀██▀ █ █ ███ █ █ ▀█▀█ █ ▀▄▄▄ ")
" @@@@@@@@@@ @@@@@@@@@@@@ / ___| | " print(common.C_RESET)
)
print(
" @@@@@@@@@@ @@@@@@@@ \\ `--.| |__ __ _ _ __ ___ "
)
print(
" @@@@@@@@@@@ @ @@@@ `--. \\ '_ \\ / _` | '__/ _ \\"
)
print(
" @@@@@@@@@@@@@ @@@@@@ /\\__/ / | | | (_| | | | __/"
)
print(
" @@@@@@@@@@@@@@@@@@@@@@@@@@@@@ \\____/|_| |_|\\__,_|_| \\___|"
)
print(" @@@@@@@@@@@@@@@@@@@@@@@@@@@@@ ")
print(" @@@@@@@@@@@@@@@@@@@@@@@@@ ")
print(" @@@@@@@@@@@@@@@@@@@ ")
print(" @@@@@@@@@ ")
print(reset)
# OnionShare CLI in OSX needs to change current working directory (#132) # OnionShare CLI in OSX needs to change current working directory (#132)
if common.platform == "Darwin": if common.platform == "Darwin":

View File

@ -44,8 +44,11 @@ class Common:
""" """
C_RESET = "\033[0m" C_RESET = "\033[0m"
C_BOLD = "\033[01m"
C_LIGHTGRAY = "\033[37m" C_LIGHTGRAY = "\033[37m"
C_DARKGRAY = "\033[90m" C_DARKGRAY = "\033[90m"
C_LIGHTPURPLE = "\033[95m"
C_DARKPURPLE = "\033[35m"
def __init__(self, verbose=False): def __init__(self, verbose=False):
self.verbose = verbose self.verbose = verbose