mirror of
https://github.com/Mayccoll/Gogh.git
synced 2023-08-10 21:12:46 +03:00
Update Readme file, new images, instructions, whats new
This commit is contained in:
parent
bbcaf8ef8f
commit
30acbef642
136
README.md
136
README.md
@ -6,8 +6,26 @@ Elementary-OS-Terminal-Colors
|
||||
![elementary](https://raw.githubusercontent.com/Mayccoll/Elementary-OS-Terminal-Colors/master/images/themes.gif)
|
||||
----
|
||||
|
||||
### What's New
|
||||
|
||||
Elementary os Freya 0.3 color scheme.
|
||||
|
||||
```bash
|
||||
wget -O xt http://git.io/vvmPj && chmod +x xt && ./xt && rm xt
|
||||
```
|
||||
|
||||
![new](https://raw.githubusercontent.com/Mayccoll/Elementary-OS-Terminal-Colors/master/images/new.png)
|
||||
|
||||
### How to install:
|
||||
|
||||
- Just copy and paste One line command
|
||||
|
||||
```bash
|
||||
$ wget -O xt http://git.io/fXU8Jg && chmod +x xt && ./xt && rm xt
|
||||
```
|
||||
|
||||
This way of installing is equals the below, the only thing is that a shortening of urls (git.io) was used and fits all commands on a single line.
|
||||
|
||||
- Download and save the script file, make this file executable and run it:
|
||||
|
||||
```bash
|
||||
@ -16,13 +34,7 @@ Elementary-OS-Terminal-Colors
|
||||
$ ./elementary.sh
|
||||
```
|
||||
|
||||
- One line command
|
||||
|
||||
This way of installing is equals the above, the only thing is that a shortening of urls (git.io) was used and fits all commands on a single line.
|
||||
|
||||
```bash
|
||||
$ wget -O xt http://git.io/fXU8Jg && chmod +x xt && ./xt && rm xt
|
||||
```
|
||||
|
||||
#### Elementary OS
|
||||
|
||||
@ -46,36 +58,108 @@ Please feel free to use and create your own color schemes.
|
||||
|
||||
**You can send Pull Request.**
|
||||
|
||||
- The Script
|
||||
- **The Script**
|
||||
|
||||
https://github.com/Mayccoll/Elementary-OS-Terminal-Colors/blob/master/base.sh
|
||||
|
||||
- Variables
|
||||
- **Variables**
|
||||
|
||||
```bash
|
||||
BACKGROUD_COLOR="#2F373B" # Background Color
|
||||
FOREGROUND_COLOR="#d9e6f2" # Text
|
||||
|
||||
COLOR_01="#383838" # HOST
|
||||
COLOR_02="#9f9393" # SYNTAX_STRING
|
||||
COLOR_03="#939f93" # COMMAND
|
||||
COLOR_04="#9f9f93" # COMMAND_COLOR2
|
||||
COLOR_10="#ab4642" # COMMAND_ERROR
|
||||
COLOR_05="#7cafc2" # PATH
|
||||
COLOR_07="#ab4642" # PROMP
|
||||
COLOR_11="#a1b56c" # EXEC
|
||||
COLOR_13="#7cafc2" # FOLDER
|
||||
|
||||
COLOR_02="#9f9393" # SYNTAX_STRING
|
||||
COLOR_06="#9f939f" # SYNTAX_VAR
|
||||
COLOR_07="#ab4642" # PROMP
|
||||
COLOR_08="#F2F2F2" #
|
||||
|
||||
COLOR_08="#F2F2F2" # COLOR_08
|
||||
COLOR_09="#5D5D5D" # COLOR_09
|
||||
COLOR_12="#FFD00A" # COLOR_12
|
||||
COLOR_14="#FF1D62" # COLOR_14
|
||||
COLOR_15="#4BB8FD" # COLOR_15
|
||||
COLOR_16="#A020F0" # COLOR_16
|
||||
COLOR_09="#5D5D5D" #
|
||||
COLOR_10="#ab4642" # COMMAND_ERROR
|
||||
COLOR_11="#a1b56c" # EXEC
|
||||
COLOR_12="#FFD00A" #
|
||||
COLOR_13="#7cafc2" # FOLDER
|
||||
COLOR_14="#FF1D62" #
|
||||
COLOR_15="#4BB8FD" #
|
||||
COLOR_16="#A020F0" #
|
||||
```
|
||||
- **Explanation of colors and variables**
|
||||
|
||||
The colors of the terminal are composed of 18 colors in 3 sections.
|
||||
|
||||
Section 1: Regular text.
|
||||
|
||||
Section 2: Bold text.
|
||||
|
||||
Section 3: text and background.
|
||||
|
||||
The basic colors are 8:
|
||||
Black
|
||||
White
|
||||
network
|
||||
green
|
||||
Yellow
|
||||
Blue
|
||||
Purple
|
||||
Cyan
|
||||
|
||||
In comments variables is that of the console belongs each color.
|
||||
|
||||
Here is a picture that explains a little better as colors are distributed.
|
||||
|
||||
![Colors](https://raw.githubusercontent.com/Mayccoll/Elementary-OS-Terminal-Colors/master/images/colors.png)
|
||||
|
||||
- **View Colors**
|
||||
|
||||
You can use this alias to view your color scheme in termial
|
||||
|
||||
```bash
|
||||
colors () {
|
||||
echo ""
|
||||
echo "# Regular"
|
||||
|
||||
#black
|
||||
echo -e "\e[0;30m *** AaBbCs --- ███ \\e[0m ---> COLOR_01"
|
||||
#red
|
||||
echo -e "\e[0;31m *** AaBbCs --- ███ \\e[0m ---> COLOR_02"
|
||||
#green
|
||||
echo -e "\e[0;32m *** AaBbCs --- ███ \\e[0m ---> COLOR_03"
|
||||
#yellow
|
||||
echo -e "\e[0;33m *** AaBbCs --- ███ \\e[0m ---> COLOR_04"
|
||||
#blue
|
||||
echo -e "\e[0;34m *** AaBbCs --- ███ \\e[0m ---> COLOR_05"
|
||||
#purple
|
||||
echo -e "\e[0;35m *** AaBbCs --- ███ \\e[0m ---> COLOR_06"
|
||||
#cyan
|
||||
echo -e "\e[0;36m *** AaBbCs --- ███ \\e[0m ---> COLOR_07"
|
||||
#white
|
||||
echo -e "\e[0;37m *** AaBbCs --- ███ \\e[0m ---> COLOR_08"
|
||||
|
||||
echo ""
|
||||
echo "# Bold"
|
||||
|
||||
#black
|
||||
echo -e "\e[1;30m *** AaBbCs --- ███ \\e[0m ---> COLOR_09"
|
||||
#red
|
||||
echo -e "\e[1;31m *** AaBbCs --- ███ \\e[0m ---> COLOR_10"
|
||||
#green
|
||||
echo -e "\e[1;32m *** AaBbCs --- ███ \\e[0m ---> COLOR_11"
|
||||
#yellow
|
||||
echo -e "\e[1;33m *** AaBbCs --- ███ \\e[0m ---> COLOR_12"
|
||||
#blue
|
||||
echo -e "\e[1;34m *** AaBbCs --- ███ \\e[0m ---> COLOR_13"
|
||||
#purple
|
||||
echo -e "\e[1;35m *** AaBbCs --- ███ \\e[0m ---> COLOR_14"
|
||||
#cyan
|
||||
echo -e "\e[1;36m *** AaBbCs --- ███ \\e[0m ---> COLOR_15"
|
||||
#white
|
||||
echo -e "\e[1;37m *** AaBbCs --- ███ \\e[0m ---> COLOR_16"
|
||||
|
||||
}
|
||||
```
|
||||
#### Credits:
|
||||
|
||||
- http://ciembor.github.io/4bit/
|
||||
@ -88,6 +172,16 @@ https://github.com/Mayccoll/Elementary-OS-Terminal-Colors/blob/master/base.sh
|
||||
|
||||
### More themes:
|
||||
|
||||
- **Freya.sh**
|
||||
|
||||
![freya](https://raw.githubusercontent.com/Mayccoll/Elementary-OS-Terminal-Colors/master/images/freya.png)
|
||||
|
||||
|
||||
```bash
|
||||
# One line install:
|
||||
$ wget -O xt http://git.io/vvmPj && chmod +x xt && ./xt && rm xt
|
||||
```
|
||||
|
||||
- **aci.sh**
|
||||
|
||||
![aci](https://raw.githubusercontent.com/Mayccoll/Elementary-OS-Terminal-Colors/master/images/aci.png)
|
||||
@ -234,7 +328,7 @@ $ wget -O xt http://git.io/luv_2A && chmod +x xt && ./xt && rm xt
|
||||
|
||||
- **shel.sh**
|
||||
|
||||
![shel](https://raw.githubusercontent.com/Mayccoll/Elementary-OS-Terminal-Colors/master/images/she.png)
|
||||
![shel](https://raw.githubusercontent.com/Mayccoll/Elementary-OS-Terminal-Colors/master/images/shel.png)
|
||||
|
||||
```bash
|
||||
# One line install:
|
||||
|
Loading…
Reference in New Issue
Block a user