This repository has been archived by the owner on Jun 15, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
.ashrc
51 lines (48 loc) · 3.43 KB
/
.ashrc
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
echo "
.. .
......... .........
-. .... .... ..
- .--. -
- ...... -
-. .. .. .-
-.......--......--......-.
......-. .. -. .-.....
.... .- .. .... .. -. ....
.-. ..-. --::-. ..-. .-
.- -- .::::::. -- -.
-. .... .-::-. .... ..
..... .. .. .. .. -. .....
.....-... .-. .-. ...-.....
-.......--......--......-.
-. .. ... .-
.- ...... -
- .--. -
.. .... .... ..
........ .........
.. .
.........
.:.......--. ..
.:. .:. ...... ..... ...... --
.:. .:. .......... .......-. ,........ ..:-..
.:. ..-. .-. .- .-. '. . -..
.:-...---.. -. .-. ...... -- .- -.
.:. .--. --.......... .-. .-- -- -.
.:. .-. .-. .: -- .-. -.
.: .-. .-........ .-.. ...-. ..-...... .-...
. . .... ...... ...... ...
"
printf "\e[0m\n"
echo "You've the following editor installed:"
echo "- nano"
echo "- vim"
echo
COLOR_RED="\033[0;31m"
COLOR_YELLOW="\033[0;33m"
COLOR_GREEN="\033[0;32m"
COLOR_PURPLE="\033[38;5;99m"
COLOR_BLUE="\033[0;38;5;38m"
COLOR_WHITE="\033[0;37m"
COLOR_RESET="\033[0m"
DIR_BACKGROUND="\033[0;38m\e[43m"
PS1="$DIR_BACKGROUND[\W]$COLOR_BLUE\$$COLOR_RESET "
export PS1