-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcolor.sh
executable file
Β·53 lines (50 loc) Β· 2.56 KB
/
color.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#!/usr/bin/env sh
. "${HOME}/.cache/wpgtk.color"
# rst="\e[0m"
# blk="\e[1;30m"
# red="\e[1;31m"
# grn="\e[1;32m"
# ylw="\e[1;33m"
# blu="\e[1;34m"
# mgt="\e[1;35m"
# cyn="\e[1;36m"
# wht="\e[1;37m"
# dblk="\e[0;30m"
# dred="\e[0;31m"
# dgrn="\e[0;32m"
# dylw="\e[0;33m"
# dblu="\e[0;34m"
# dmgt="\e[0;35m"
# dcyn="\e[0;36m"
# dwht="\e[0;37m"
rst="$(tput sgr0)"
blk="$(tput setaf 0)"
red="$(tput setaf 1)"
grn="$(tput setaf 2)"
ylw="$(tput setaf 3)"
blu="$(tput setaf 4)"
mgt="$(tput setaf 5)"
cyn="$(tput setaf 6)"
wht="$(tput setaf 7)"
dblk="$(tput setaf 8)"
dred="$(tput setaf 9)"
dgrn="$(tput setaf 10)"
dylw="$(tput setaf 11)"
dblu="$(tput setaf 12)"
dmgt="$(tput setaf 13)"
dcyn="$(tput setaf 14)"
dwht="$(tput setaf 15)"
echo -e
echo -e " ______ ______ __ ______ ______ ______ __ __ "
echo -e " /\ ___\ /\ __ \ /\ \ /\ __ \ /\ == \ /\ ___\ /\ \_\ \ "
echo -e " \ \ \____ \ \ \/\ \ \ \ \____ \ \ \/\ \ \ \ __< __ \ \___ \ \ \ __ \ "
echo -e " \ \_____\ \ \_____\ \ \_____\ \ \_____\ \ \_\ \_\ /\_\ \/\_____\ \ \_\ \_\ "
echo -e " \/_____/ \/_____/ \/_____/ \/_____/ \/_/ /_/ \/_/ \/_____/ \/_/\/_/ "
echo -e
echo -e " βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ"
echo -e " BLK RED GRN YEL BLU MGT CYN WHT "
echo -e " βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ"
echo -e " ${dblk}${color0} ${red}${color1} ${grn}${color2} ${ylw}${color3} ${blu}${color4} ${mgt}${color5} ${cyn}${color6} ${wht}${color7}${rst}"
echo -e " ${dblk}${color8} ${dred}${color9} ${dgrn}${color10} ${dylw}${color11} ${dblu}${color12} ${dmgt}${color13} ${dcyn}${color14} ${dwht}${color15}${rst}"
echo -e " ${blk}βββββββ ${red}βββββββ ${grn}βββββββ ${ylw}βββββββ ${blu}βββββββ ${mgt}βββββββ ${cyn}βββββββ ${wht}βββββββ${rst}"
echo -e " ${dblk}βββββββ ${dred}βββββββ ${dgrn}βββββββ ${dylw}βββββββ ${dblu}βββββββ ${dmgt}βββββββ ${dcyn}βββββββ ${dwht}βββββββ${rst}"