Skip to content

Commit 99441fd

Browse files
author
Imperator Vladimir
authored
Merge pull request LimerBoy#32 from lilcsz/patch-1
Update logo.py
2 parents 97712c0 + 6eb6679 commit 99441fd

File tree

1 file changed

+6
-10
lines changed

1 file changed

+6
-10
lines changed

tools/addons/logo.py

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,10 @@
11
# Import modules
22
from colorama import Fore
3+
from colorama import init
4+
from termcolor import cprint
5+
from pyfiglet import figlet_format
36

47
# Logo
5-
print(
6-
rf"""{Fore.MAGENTA}
7-
_____ _
8-
\_ \_ __ ___ _ __ _ _| |___ ___
9-
/ /\/ '_ ` _ \| '_ \| | | | / __|/ _ \
10-
/\/ /_ | | | | | | |_) | |_| | \__ \ __/
11-
\____/ |_| |_| |_| .__/ \__,_|_|___/\___|
12-
|_| Created by LimerBoy
13-
{Fore.RESET}"""
14-
)
8+
cprint('--------------------------------------------', 'red')
9+
cprint(figlet_format('Impulse', font='standard'), 'red', attrs=['bold'])
10+
cprint('--------------------------------------------', 'red')

0 commit comments

Comments
 (0)