mirror of
https://github.com/onionshare/onionshare.git
synced 2025-01-11 23:39:31 -05:00
Prettier ASCII art
This commit is contained in:
parent
470fb2bda3
commit
dac508d06e
@ -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":
|
||||||
|
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user