1
0
mirror of https://github.com/Mayccoll/Gogh.git synced 2023-08-10 21:12:46 +03:00
Gogh/README.md

367 lines
8.7 KiB
Markdown
Raw Normal View History

2013-11-19 05:01:48 +04:00
Elementary-OS-Terminal-Colors
=============================
2013-11-19 05:17:45 +04:00
2014-06-07 20:35:38 +04:00
#### Color Schemes For Elementary OS - Linux Mint - Ubuntu
2013-11-19 05:17:45 +04:00
2014-11-04 01:25:35 +03:00
![elementary](https://raw.githubusercontent.com/Mayccoll/Elementary-OS-Terminal-Colors/master/images/themes.gif)
2014-11-04 01:08:15 +03:00
----
### 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)
2014-11-04 01:08:15 +03:00
### 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.
2015-04-13 05:13:18 +03:00
- **or** Download and save the script file, make this file executable and run it:
2014-04-24 05:54:55 +04:00
```bash
2014-04-26 23:39:11 +04:00
$ wget https://raw.githubusercontent.com/Mayccoll/Elementary-OS-Terminal-Colors/master/elementary.sh
2014-04-24 05:54:55 +04:00
$ chmod +x elementary.sh
$ ./elementary.sh
```
2014-05-20 23:56:37 +04:00
2015-01-05 01:49:57 +03:00
#### Elementary OS
2015-01-14 19:55:33 +03:00
- Uncomment the following line in ```.bashrc```
2015-01-05 01:49:57 +03:00
```bash
#force_color_prompt=yes
```
2015-01-14 19:55:33 +03:00
- execute in terminal
```bash
$ source .bashrc
```
2014-12-14 23:49:19 +03:00
### New Script
To have more control over colors, I made a new simple script to change those made with 4 bits.
This new script has variables which can be set according to preferences.
Please feel free to use and create your own color schemes.
**You can send Pull Request.**
- **The Script**
2014-12-14 23:49:19 +03:00
https://github.com/Mayccoll/Elementary-OS-Terminal-Colors/blob/master/base.sh
- **Variables**
2014-05-20 23:56:37 +04:00
```bash
2014-12-14 23:49:19 +03:00
BACKGROUD_COLOR="#2F373B" # Background Color
FOREGROUND_COLOR="#d9e6f2" # Text
2014-12-14 23:49:19 +03:00
COLOR_01="#383838" # HOST
COLOR_02="#9f9393" # SYNTAX_STRING
2014-12-14 23:49:19 +03:00
COLOR_03="#939f93" # COMMAND
COLOR_04="#9f9f93" # COMMAND_COLOR2
COLOR_05="#7cafc2" # PATH
COLOR_06="#9f939f" # SYNTAX_VAR
2014-12-14 23:49:19 +03:00
COLOR_07="#ab4642" # PROMP
COLOR_08="#F2F2F2" #
COLOR_09="#5D5D5D" #
COLOR_10="#ab4642" # COMMAND_ERROR
2014-12-14 23:49:19 +03:00
COLOR_11="#a1b56c" # EXEC
COLOR_12="#FFD00A" #
2014-12-14 23:49:19 +03:00
COLOR_13="#7cafc2" # FOLDER
COLOR_14="#FF1D62" #
COLOR_15="#4BB8FD" #
COLOR_16="#A020F0" #
```
- **Explanation of colors and variables**
2014-12-14 23:49:19 +03:00
The colors of the terminal are composed of 18 colors in 3 sections.
2014-12-14 23:49:19 +03:00
Section 1: Regular text.
Section 2: Bold text.
Section 3: text and background.
The basic colors are 8:
2015-04-13 05:17:31 +03:00
- Black
- Red
- Green
- Yellow
- Blue
- Purple
- Cyan
- White
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)
2014-05-20 23:56:37 +04:00
- **View Colors**
2014-05-21 00:47:00 +04:00
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"
}
```
2014-12-14 23:49:19 +03:00
#### Credits:
- http://ciembor.github.io/4bit/
2015-01-03 23:20:02 +03:00
#### contributors:
- https://github.com/javaguirre
2014-12-14 23:49:19 +03:00
-------
### 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
```
2014-12-14 23:49:19 +03:00
- **aci.sh**
2014-05-21 00:47:00 +04:00
![aci](https://raw.githubusercontent.com/Mayccoll/Elementary-OS-Terminal-Colors/master/images/aci.png)
2014-12-14 23:49:19 +03:00
2014-05-21 00:47:00 +04:00
```bash
2014-12-14 23:49:19 +03:00
# One line install:
$ wget -O xt http://git.io/mGzs5Q && chmod +x xt && ./xt && rm xt
2014-05-21 00:47:00 +04:00
```
2014-12-14 23:49:19 +03:00
- **aco.sh**
2014-05-21 00:47:00 +04:00
![aco](https://raw.githubusercontent.com/Mayccoll/Elementary-OS-Terminal-Colors/master/images/aco.png)
```bash
2014-12-14 23:49:19 +03:00
# One line install:
$ wget -O xt http://git.io/0l4A5w && chmod +x xt && ./xt && rm xt
2014-05-21 00:47:00 +04:00
```
2013-11-19 05:17:45 +04:00
2014-12-14 23:49:19 +03:00
- **azu.sh**
2014-04-24 06:04:19 +04:00
![azu](https://raw.githubusercontent.com/Mayccoll/Elementary-OS-Terminal-Colors/master/images/azu.png)
2014-05-17 01:13:55 +04:00
```bash
2014-12-14 23:49:19 +03:00
# One line install:
$ wget -O xt http://git.io/pDU8aQ && chmod +x xt && ./xt && rm xt
2014-05-17 01:13:55 +04:00
```
2014-12-14 23:49:19 +03:00
- **cai.sh**
2014-04-24 06:04:19 +04:00
![cai](https://raw.githubusercontent.com/Mayccoll/Elementary-OS-Terminal-Colors/master/images/cai.png)
2014-05-17 01:13:55 +04:00
```bash
2014-12-14 23:49:19 +03:00
# One line install:
$ wget -O xt http://git.io/ECkzjg && chmod +x xt && ./xt && rm xt
2014-05-17 01:13:55 +04:00
```
2014-12-14 23:49:19 +03:00
- **elic.sh**
2014-04-24 06:04:19 +04:00
![elic](https://raw.githubusercontent.com/Mayccoll/Elementary-OS-Terminal-Colors/master/images/elic.png)
2014-05-17 01:13:55 +04:00
```bash
2014-12-14 23:49:19 +03:00
# One line install:
$ wget -O xt http://git.io/sSSshQ && chmod +x xt && ./xt && rm xt
2014-05-17 01:13:55 +04:00
```
2014-12-14 23:49:19 +03:00
- **elio.sh**
2014-04-24 06:04:19 +04:00
![elio](https://raw.githubusercontent.com/Mayccoll/Elementary-OS-Terminal-Colors/master/images/elio.png)
2014-05-17 01:13:55 +04:00
```bash
2014-12-14 23:49:19 +03:00
# One line install:
$ wget -O xt http://git.io/bCVhIA && chmod +x xt && ./xt && rm xt
2014-05-17 01:13:55 +04:00
```
2014-12-14 23:49:19 +03:00
- **miu.sh**
2014-04-24 06:04:19 +04:00
![miu](https://raw.githubusercontent.com/Mayccoll/Elementary-OS-Terminal-Colors/master/images/miu.png)
2014-05-17 01:13:55 +04:00
```bash
2014-12-14 23:49:19 +03:00
# One line install:
$ wget -O xt http://git.io/b-eZVQ && chmod +x xt && ./xt && rm xt
2014-05-17 01:13:55 +04:00
```
2014-12-14 23:49:19 +03:00
- **tin.sh**
2014-04-24 06:04:19 +04:00
![tin](https://raw.githubusercontent.com/Mayccoll/Elementary-OS-Terminal-Colors/master/images/tin.png)
2013-11-19 05:17:45 +04:00
2014-05-17 01:13:55 +04:00
```bash
2014-12-14 23:49:19 +03:00
# One line install:
$ wget -O xt http://git.io/W5dkrA && chmod +x xt && ./xt && rm xt
2014-05-17 01:13:55 +04:00
```
2014-11-04 01:08:15 +03:00
2014-12-14 23:49:19 +03:00
- **elementary.sh**
2014-05-21 00:24:06 +04:00
2014-05-21 00:47:00 +04:00
![elementary](https://raw.githubusercontent.com/Mayccoll/Elementary-OS-Terminal-Colors/master/images/elementary.png)
2014-05-21 00:24:06 +04:00
```bash
2014-12-14 23:49:19 +03:00
# One line install:
$ wget -O xt http://git.io/fXU8Jg && chmod +x xt && ./xt && rm xt
2014-05-21 00:24:06 +04:00
```
2014-11-04 01:08:15 +03:00
2014-12-14 23:49:19 +03:00
- **vag.sh**
![vag](https://raw.githubusercontent.com/Mayccoll/Elementary-OS-Terminal-Colors/master/images/vag.png)
```bash
2014-12-14 23:49:19 +03:00
# One line install:
$ wget -O xt http://git.io/xwkzlg && chmod +x xt && ./xt && rm xt
```
2014-04-24 05:54:55 +04:00
2014-11-04 01:08:15 +03:00
2014-12-14 23:49:19 +03:00
- **bim.sh**
2014-11-04 01:08:15 +03:00
![bim](https://raw.githubusercontent.com/Mayccoll/Elementary-OS-Terminal-Colors/master/images/bim.png)
```bash
2014-12-14 23:49:19 +03:00
# One line install:
$ wget -O xt http://git.io/-t0lXg && chmod +x xt && ./xt && rm xt
2014-11-04 01:08:15 +03:00
```
2014-12-14 23:49:19 +03:00
- **jup.sh**
2014-11-04 01:08:15 +03:00
![jup](https://raw.githubusercontent.com/Mayccoll/Elementary-OS-Terminal-Colors/master/images/jup.png)
```bash
2014-12-14 23:49:19 +03:00
# One line install:
$ wget -O xt http://git.io/PE0xXw && chmod +x xt && ./xt && rm xt
2014-11-04 01:08:15 +03:00
```
2014-12-14 23:49:19 +03:00
- **mar.sh**
2014-11-04 01:08:15 +03:00
![mar](https://raw.githubusercontent.com/Mayccoll/Elementary-OS-Terminal-Colors/master/images/mar.png)
```bash
2014-12-14 23:49:19 +03:00
# One line install:
$ wget -O xt http://git.io/g749-Q && chmod +x xt && ./xt && rm xt
2014-11-04 01:08:15 +03:00
```
2014-12-14 23:49:19 +03:00
- **nep.sh**
2014-11-04 01:08:15 +03:00
![nep](https://raw.githubusercontent.com/Mayccoll/Elementary-OS-Terminal-Colors/master/images/nep.png)
```bash
2014-12-14 23:49:19 +03:00
# One line install:
$ wget -O xt http://git.io/6hJsiw && chmod +x xt && ./xt && rm xt
2014-11-04 01:08:15 +03:00
```
2014-12-14 23:49:19 +03:00
- **sat.sh**
2014-11-04 01:08:15 +03:00
![sat](https://raw.githubusercontent.com/Mayccoll/Elementary-OS-Terminal-Colors/master/images/vag.png)
```bash
2014-12-14 23:49:19 +03:00
# One line install:
$ wget -O xt http://git.io/luv_2A && chmod +x xt && ./xt && rm xt
2014-11-04 01:08:15 +03:00
```
2014-12-14 23:49:19 +03:00
- **shel.sh**
2014-11-04 01:08:15 +03:00
![shel](https://raw.githubusercontent.com/Mayccoll/Elementary-OS-Terminal-Colors/master/images/shel.png)
2013-11-19 05:17:45 +04:00
```bash
2014-12-14 23:49:19 +03:00
# One line install:
$ wget -O xt http://git.io/TF6KDA && chmod +x xt && ./xt && rm xt
2014-11-04 01:08:15 +03:00
```
2013-11-19 05:17:45 +04:00
2014-12-14 23:49:19 +03:00
- **ura.sh**
2014-11-04 01:08:15 +03:00
![ura](https://raw.githubusercontent.com/Mayccoll/Elementary-OS-Terminal-Colors/master/images/ura.png)
2013-11-19 05:17:45 +04:00
```bash
2014-12-14 23:49:19 +03:00
# One line install:
$ wget -O xt http://git.io/GUFFsQ && chmod +x xt && ./xt && rm xt
2013-11-19 05:17:45 +04:00
```
2014-12-14 23:53:40 +03:00
- **pali.sh**
![pali](https://raw.githubusercontent.com/Mayccoll/Elementary-OS-Terminal-Colors/master/images/pali.png)
```bash
# One line install:
$ wget -O xt http://git.io/xh3YKA && chmod +x xt && ./xt && rm xt
2015-01-03 23:20:02 +03:00
```
- **hydrid.sh**
![hydrid](https://raw.githubusercontent.com/Mayccoll/Elementary-OS-Terminal-Colors/master/images/Hybrid.png)
```bash
# One line install:
$ wget -O xt http://git.io/PWgNtA && chmod +x xt && ./xt && rm xt
2015-01-14 19:55:33 +03:00
```