-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathinstall-icons.sh
37 lines (32 loc) · 958 Bytes
/
install-icons.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# Made By M3TOZZ
# https://github.com/m3tozz/NeoCat.git
clear
banner(){
echo -e '\033[1;36m
_ _ ____ _
| \ | | ___ ___ / ___|__ _| |_
| \| |/ _ \/ _ \| | / _` | __|Install-Terminal-Icons
| |\ | __/ (_) | |__| (_| | |_
|_| \_|\___|\___/ \____\__,_|\__|
'
echo -ne "\e[0;32mInstall Terminal Icons (icons-in-terminal) (Y/N)" ; read islem
}
banner
if [[ $islem == y || $islem == Y ]]; then
clear
echo -e "\033[0;31mSetting Up...\033[1;36m"
git clone https://github.com/sebastiencs/icons-in-terminal.git
cd icons-in-terminal
./install.sh
clear
echo -e "\033[1;31mNeoCat - NeoFetch Theme Pack!\033[0m"
sleep 3
./print_icons.sh
echo -e "\033[1;31mInstalled! \033[1;36mNow Start A New Terminal :) \033[0m"
elif [[ $islem == n || $islem == N ]]; then
clear
echo -e "\033[0m GoodBye."
exit 1
else
echo -e '\033[36;40;1m Wrong transaction number!\033[0m'
fi