Compare commits

...

28 Commits

Author SHA1 Message Date
Mgldvd 63a3eec832 update themes json 2023-02-27 13:04:26 -05:00
Mgldvd d88c1e3abd Fix: in the json file cursorColor now is cursor 2023-02-27 13:03:49 -05:00
Mgldvd 2fee9bcf0f in the json file cursorColor now is cursor 2023-02-27 13:02:01 -05:00
Mgldvd 69e97cfbd7
Update README.md 2023-02-27 12:49:33 -05:00
Mgldvd a8ef68e2a5 Add script to replace themes in goth - also fix paths on tools scripts 2023-02-27 12:43:11 -05:00
Mgldvd a00b6ca9fa Remove json format section 2023-02-26 23:50:29 -05:00
Mgldvd d481f1a702 Authors 2023-02-26 23:48:09 -05:00
Mgldvd a72c727d00 Each theme is generated as a separate JSON file. 2023-02-26 21:47:22 -05:00
Mgldvd b154478f63 The test folder was removed because its purpose and usage were not clear. 2023-02-26 20:19:02 -05:00
Mgldvd 36923498bf Update readme with: Create your own theme 2023-02-26 20:17:42 -05:00
Mgldvd 2df4586ed8 Now the themes will be in yml format, these will be the source of truth and everything will be generated from them. 2023-02-26 19:20:45 -05:00
Mgldvd 0cf0a74757 Github actions run commands as sudo 2023-02-26 19:14:10 -05:00
Mgldvd 2678fc2439 Github actions remove quiet output on all commands 2023-02-26 19:11:58 -05:00
Mgldvd 4abfa0b6c7 Github actions remove apt quiet 2023-02-26 19:10:40 -05:00
Mgldvd 908985b3e8 Github actions change apt for apt-get 2023-02-26 19:08:20 -05:00
Mgldvd ac7689bcfe Github actions add workflow_dispatch 2023-02-26 19:06:35 -05:00
Mgldvd f8c76aeba7 Add new action to generate themes 2023-02-26 18:55:53 -05:00
Mgldvd 0e15f9930a Add tools to build themes 2023-02-26 09:02:41 -05:00
Mgldvd 7111b3520e In landing page fix terminal command line 2023-02-26 08:27:27 -05:00
Mgldvd 69b80b6d9c update landing with the new json format 2023-02-26 00:26:11 -05:00
Mgldvd 2249346898 New json format add hash 2023-02-26 00:18:10 -05:00
Mgldvd 7db970a654 Add themes in yml format 2023-02-26 00:16:37 -05:00
Mgldvd 6092e80eb4 Update landing and clean root 2023-02-26 00:12:58 -05:00
Mgldvd 55b3e25b2c chmod +x on all themes 2023-02-25 23:29:34 -05:00
Mgldvd 6d87db4ea9 Uppercase all colors 2023-02-25 23:28:44 -05:00
Mgldvd 51e32ee26f remove duplicates 2023-02-25 22:56:58 -05:00
Mgldvd 0ec4205e20 update themes to match normalization 2023-02-25 22:53:09 -05:00
Mgldvd 55e625701f Normalization of files 2023-02-25 22:50:46 -05:00
999 changed files with 18719 additions and 14169 deletions

View File

@ -1,18 +1,68 @@
name: Generate themes.json
on: [workflow_dispatch]
name: Execute Python Scripts on New Theme-YML Files
on:
workflow_dispatch:
push:
paths:
- 'theme-yml/*'
jobs:
run:
name: Lint with ESLint
runs-on: ubuntu-latest
build:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- run: |
bash tools/generate.sh
git config user.name github-actions[bot]
git config user.email github-actions[bot]@github.com
git add .
git commit -m "------- Generate themes.json -------"
git push
- name: Checkout code
uses: actions/checkout@v2
- name: Update ubuntu
run: |
sudo apt-get update
echo 🏅
- name: Install git
run: |
sudo apt-get install git -y
echo 🏅
- name: Install python3
run: |
sudo apt-get install python3 -y
echo 🏅
- name: Install pip3
run: |
sudo apt-get install -y python3-pip
echo 🏅
- name: Python3 requirements.txt
run: |
pip3 install -r requirements.txt
echo 🏅
- name: Generate json
run: |
python3 tools/generatJson.py
echo 🏅
- name: Generate json files
run: |
python3 tools/generateJsonFiles.py
echo 🏅
- name: Generate Installers
run: |
python3 tools/generateShFiles.py
echo 🏅
- name: update themes in gogh file
run: |
python3 tools/updateThemes.py
echo 🏅
- name: Git commit
run: |
git config user.name github-actions[bot]
git config user.email github-actions[bot]@github.com
git add .
git commit -m "------- Generate Themes -------"
git push

View File

@ -31,14 +31,13 @@ Color Schemes For Ubuntu, Linux Mint, Elementary OS and all distributions that u
- [Install (non-interactive mode)](https://github.com/Gogh-Co/Gogh#%EF%B8%8F-install-non-interactive-mode)
- [Terminals](https://github.com/Gogh-Co/Gogh#-terminals)
- [Themes](https://github.com/Gogh-Co/Gogh#-themes)
- [How to?](https://github.com/Gogh-Co/Gogh#-how-to)
- [Create your own theme](https://github.com/Gogh-Co/Gogh#-create-your-own-theme)
- [First commit](https://github.com/Gogh-Co/Gogh#-first-commit)
- [Credits](https://github.com/Gogh-Co/Gogh#heart-credits)
- [Contributors](https://github.com/Gogh-Co/Gogh#heart-contributors)
- [Why Gogh?](https://github.com/Gogh-Co/Gogh#%EF%B8%8F-why-gogh)
- [Author](https://github.com/Gogh-Co/Gogh#-author)
- [Why Gogh?](https://github.com/Gogh-Co/Gogh#%EF%B8%8F-why-gogh)
- [Mentions](https://github.com/Gogh-Co/Gogh#-mentions)
- [Themes in json format](https://github.com/Gogh-Co/Gogh#-themes-in-json-format)
- [Stargazers over time](https://github.com/Gogh-Co/Gogh#-stargazers-over-time)
</td>
@ -88,9 +87,9 @@ bash -c "$(curl -sLo- https://git.io/vQgMr)"
<br/>
## :thinking: [Help](https://github.com/Gogh-Co/Gogh/blob/master/content/help.md)
## :thinking: [Help](https://github.com/Gogh-Co/Gogh/blob/master/pages/help.md)
- [link to page](https://github.com/Gogh-Co/Gogh/blob/master/content/help.md)
- [link to page](https://github.com/Gogh-Co/Gogh/blob/master/pages/help.md)
<br/>
@ -146,9 +145,9 @@ also all themes in json format: https://raw.githubusercontent.com/Gogh-Co/Gogh/m
<br/>
## 📌 [How to](https://github.com/Gogh-Co/Gogh/blob/master/content/howto.md)
## 📌 [Create your own theme](https://github.com/Gogh-Co/Gogh/blob/master/pages/howto.md)
If you want to create your own color scheme or contribute to the project, [start here](https://github.com/Gogh-Co/Gogh/blob/master/content/howto.md).
If you want to create your own color scheme or contribute to the project, [start here](https://github.com/Gogh-Co/Gogh/blob/master/pages/howto.md).
<br/>
@ -210,6 +209,17 @@ Many thanks to all who have participated in this project.
<br/>
## 🧠 Author (contributor)
I cannot claim to be the only author of this project. Without the help of the people who have contributed, this would not have been possible. Therefore, that's why all contributors are listed first in this document. While I am listed as the author, the true authors are all those who are mentioned in the document. I would like to express my gratitude to all of them, as well as to future contributors.
- Miguel D. Quintero - [Lanet.co](https://lanet.co)
&nbsp;&nbsp;&nbsp;&nbsp; [💵 Invite me a coffee - paypal](https://paypal.me/mgldvd?country.x=CO&locale.x=es_XC)
<br/>
## 🖌️ Why Gogh?
There is no blue without yellow and without orange.
@ -218,15 +228,6 @@ There is no blue without yellow and without orange.
<br/>
## 🧠 Author
- Miguel D. Quintero - [Lanet.co](https://lanet.co)
&nbsp;&nbsp;&nbsp;&nbsp; [💵 Invite me a coffee - paypal](https://paypal.me/mgldvd?country.x=CO&locale.x=es_XC)
<br/>
## 📣 Mentions
- [VSCode Theme](https://marketplace.visualstudio.com/items?itemName=Avetis.gogh-theme)
@ -238,22 +239,6 @@ There is no blue without yellow and without orange.
<br/>
## 📄 Themes in `json` format
- :link: [json RAW](https://raw.githubusercontent.com/Gogh-Co/Gogh/master/data/themes.json)
In your terminal type:
```bash
bash tools/generate.sh
```
This generates a json file located at `gh-pages/data/themes.json`
Original script source: https://gist.github.com/rapgru/09b449285231d18f4e4536c5f48fc927
<br/>
## 🌟 Stargazers over time
[![Stargazers over time](https://starchart.cc/Gogh-Co/Gogh.svg)](https://starchart.cc/Gogh-Co/Gogh)

View File

@ -1,55 +0,0 @@
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
export COLOR_01="#292D3E" # Black
export COLOR_02="#F07178" # Red
export COLOR_03="#C3E88D" # Green
export COLOR_04="#FFCB6B" # Yellow
export COLOR_05="#82AAFF" # Blue
export COLOR_06="#C792EA" # Magenta
export COLOR_07="#60ADEC" # Cyan
export COLOR_08="#ABB2BF" # Light gray
export COLOR_09="#959DCB" # Dark gray
export COLOR_10="#F07178" # Light Red
export COLOR_11="#C3E88D" # Light Green
export COLOR_12="#FF5572" # Light Yellow
export COLOR_13="#82AAFF" # Light Blue
export COLOR_14="#FFCB6B" # Light Magenta
export COLOR_15="#676E95" # Light Cyan
export COLOR_16="#FFFEFE" # White
export BACKGROUND_COLOR="#292D3E" # Background Color
export FOREGROUND_COLOR="#BFC7D5" # Foreground Color (text)
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor color
export PROFILE_NAME="_bash"
# =============================================================== #
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@ -1,119 +0,0 @@
![elementary](https://raw.githubusercontent.com/Gogh-Co/Gogh/master/images/gogh/Gogh-logo.png)
-----
## How To
#### 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**
https://github.com/Gogh-Co/Gogh/blob/master/_base.sh
- **Variables**
```bash
# Section 1
COLOR_01="#363636" # HOST
COLOR_02="#ff0883" # SYNTAX_STRING
COLOR_03="#83ff08" # COMMAND
COLOR_04="#ff8308" # COMMAND_COLOR2
COLOR_05="#0883ff" # PATH
COLOR_06="#8308ff" # SYNTAX_VAR
COLOR_07="#08ff83" # PROMP
COLOR_08="#b6b6b6" #
# Section 2
COLOR_09="#424242" #
COLOR_10="#ff1e8e" # COMMAND_ERROR
COLOR_11="#8eff1e" # EXEC
COLOR_12="#ff8e1e" #
COLOR_13="#1e8eff" # FOLDER
COLOR_14="#8e1eff" #
COLOR_15="#1eff8e" #
COLOR_16="#c2c2c2" #
# Section 3
BACKGROUND_COLOR="#0d1926" # Background Color
FOREGROUND_COLOR="#b4e1fd" # Text
CURSOR_COLOR="$FOREGROUND_COLOR" # Cursors
```
- **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
- 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/Gogh-Co/Gogh/master/images/gogh/colors.png)
- **View Colors**
You can use this alias to view your color scheme in terminal
```bash
color () {
# echo ""
#black
echo -e "\e[0;30m ███ *** AaBbCs --- ███ \\e[0m ---> Color 01 0;30m"
#red
echo -e "\e[0;31m ███ *** AaBbCs --- ███ \\e[0m ---> Color 02 0;31m"
#green
echo -e "\e[0;32m ███ *** AaBbCs --- ███ \\e[0m ---> Color 03 0;32m"
#yellow
echo -e "\e[0;33m ███ *** AaBbCs --- ███ \\e[0m ---> Color 04 0;33m"
#blue
echo -e "\e[0;34m ███ *** AaBbCs --- ███ \\e[0m ---> Color 05 0;34m"
#purple
echo -e "\e[0;35m ███ *** AaBbCs --- ███ \\e[0m ---> Color 06 0;35m"
#cyan
echo -e "\e[0;36m ███ *** AaBbCs --- ███ \\e[0m ---> Color 07 0;36m"
#white
echo -e "\e[0;37m ███ *** AaBbCs --- ███ \\e[0m ---> Color 08 0;37m"
echo ""
#black
echo -e "\e[1;30m ███ *** AaBbCs --- ███ \\e[0m ---> Color 09 1;30m"
#red
echo -e "\e[1;31m ███ *** AaBbCs --- ███ \\e[0m ---> Color 10 1;31m"
#green
echo -e "\e[1;32m ███ *** AaBbCs --- ███ \\e[0m ---> Color 11 1;32m"
#yellow
echo -e "\e[1;33m ███ *** AaBbCs --- ███ \\e[0m ---> Color 12 1;33m"
#blue
echo -e "\e[1;34m ███ *** AaBbCs --- ███ \\e[0m ---> Color 13 1;34m"
#purple
echo -e "\e[1;35m ███ *** AaBbCs --- ███ \\e[0m ---> Color 14 1;35m"
#cyan
echo -e "\e[1;36m ███ *** AaBbCs --- ███ \\e[0m ---> Color 15 1;36m"
#white
echo -e "\e[1;37m ███ *** AaBbCs --- ███ \\e[0m ---> Color 16 1;37m"
echo ""
echo -e "\e[0;30m█████\\e[0m\e[0;31m█████\\e[0m\e[0;32m█████\\e[0m\e[0;33m█████\\e[0m\e[0;34m█████\\e[0m\e[0;35m█████\\e[0m\e[0;36m█████\\e[0m\e[0;37m█████\\e[0m"
echo -e "\e[0m\e[1;30m█████\\e[0m\e[1;31m█████\\e[0m\e[1;32m█████\\e[0m\e[1;33m█████\\e[0m\e[1;34m█████\\e[0m\e[1;35m█████\\e[0m\e[1;36m█████\\e[0m\e[1;37m█████\\e[0m"
}
```

Binary file not shown.

File diff suppressed because one or more lines are too long

View File

@ -15,23 +15,23 @@ const htmlmin = require('gulp-htmlmin');
const inlinesource = require('gulp-inline-source');
const rename = require('gulp-rename');
const browserSync = require('browser-sync').create();
const sass = require('gulp-sass');
const sass = require('gulp-sass')(require('sass'));
function sassCompile () {
return src('./gh-pages/sass/**/main.scss')
return src('./sass/**/main.scss')
.pipe(sass({ outputStyle: 'compressed' }).on('error', sass.logError))
.pipe(rename('main.min.css'))
.pipe(dest('./gh-pages/css'));
.pipe(dest('./css'));
}
function minify () {
return src('./gh-pages/*.src.html')
return src('./*.src.html')
.pipe(inlinesource())
.pipe(htmlmin({
collapseWhitespace: true
}))
.pipe(rename('index.html'))
.pipe(dest('./gh-pages/'));
.pipe(dest('./'));
}
function serve () {
@ -53,9 +53,9 @@ function reload (done) {
}
function watchFiles () {
watch(['./gh-pages/**/*.html', '!./gh-pages/index.html'], series(sassCompile, minify, reload));
watch(['./gh-pages/js/**/*.js'], series(sassCompile, minify, reload));
watch(['./gh-pages/sass/**/*.scss'], series(sassCompile, minify, reload));
watch(['./**/*.html', '!./index.html'], series(sassCompile, minify, reload));
watch(['./js/**/*.js'], series(sassCompile, minify, reload));
watch(['./sass/**/*.scss'], series(sassCompile, minify, reload));
}
exports.default = parallel(serve, watchFiles);

File diff suppressed because one or more lines are too long

View File

@ -167,85 +167,93 @@
</div>
<div class="body" :style="'background-color: ' + theme.background">
<div class="body__bar body__bar--top">
<span :style="'background-color: ' + theme.black"></span>
<span :style="'background-color: ' + theme.red"></span>
<span :style="'background-color: ' + theme.green"></span>
<span :style="'background-color: ' + theme.yellow"></span>
<span :style="'background-color: ' + theme.blue"></span>
<span :style="'background-color: ' + theme.purple"></span>
<span :style="'background-color: ' + theme.cyan"></span>
<span :style="'background-color: ' + theme.white"></span>
<span :style="'background-color: ' + theme.color_01"></span>
<span :style="'background-color: ' + theme.color_02"></span>
<span :style="'background-color: ' + theme.color_03"></span>
<span :style="'background-color: ' + theme.color_04"></span>
<span :style="'background-color: ' + theme.color_05"></span>
<span :style="'background-color: ' + theme.color_06"></span>
<span :style="'background-color: ' + theme.color_07"></span>
<span :style="'background-color: ' + theme.color_08"></span>
</div>
<div class="body__bar body__bar--bottom">
<span :style="'background-color: ' + theme.brightBlack"></span>
<span :style="'background-color: ' + theme.brightRed"></span>
<span :style="'background-color: ' + theme.brightGreen"></span>
<span :style="'background-color: ' + theme.brightYellow"></span>
<span :style="'background-color: ' + theme.brightBlue"></span>
<span :style="'background-color: ' + theme.brightPurple"></span>
<span :style="'background-color: ' + theme.brightCyan"></span>
<span :style="'background-color: ' + theme.brightWhite"></span>
<span :style="'background-color: ' + theme.color_09"></span>
<span :style="'background-color: ' + theme.color_10"></span>
<span :style="'background-color: ' + theme.color_11"></span>
<span :style="'background-color: ' + theme.color_12"></span>
<span :style="'background-color: ' + theme.color_13"></span>
<span :style="'background-color: ' + theme.color_14"></span>
<span :style="'background-color: ' + theme.color_15"></span>
<span :style="'background-color: ' + theme.color_16"></span>
</div>
<div class="body__txt">
<p :style="'color: ' + theme.black">
&block;&block;&block; <span>*** AaBbMmYyZz 01 ---</span> &block;&block;&block; <span> {{ theme.black.toLowerCase() }}</span>
</p>
<p :style="'color: ' + theme.red">
&block;&block;&block; <span>*** AaBbMmYyZz 02 ---</span> &block;&block;&block; <span> {{ theme.red.toLowerCase() }}</span>
</p>
<p :style="'color: ' + theme.green">
&block;&block;&block; <span>*** AaBbMmYyZz 03 ---</span> &block;&block;&block; <span> {{ theme.green.toLowerCase() }}</span>
</p>
<p :style="'color: ' + theme.yellow">
&block;&block;&block; <span>*** AaBbMmYyZz 04 ---</span> &block;&block;&block; <span> {{ theme.yellow.toLowerCase() }}</span>
</p>
<p :style="'color: ' + theme.blue">
&block;&block;&block; <span>*** AaBbMmYyZz 05 ---</span> &block;&block;&block; <span> {{ theme.blue.toLowerCase() }}</span>
</p>
<p :style="'color: ' + theme.purple">
&block;&block;&block; <span>*** AaBbMmYyZz 06 ---</span> &block;&block;&block; <span> {{ theme.purple.toLowerCase() }}</span>
</p>
<p :style="'color: ' + theme.cyan">
&block;&block;&block; <span>*** AaBbMmYyZz 07 ---</span> &block;&block;&block; <span> {{ theme.cyan.toLowerCase() }}</span>
</p>
<p :style="'color: ' + theme.white">
&block;&block;&block; <span>*** AaBbMmYyZz 08 ---</span> &block;&block;&block; <span> {{ theme.white.toLowerCase() }}</span>
</p>
<br>
<p :style="'color: ' + theme.brightBlack">
&block;&block;&block; <span>*** AaBbMmYyZz 09 ---</span> &block;&block;&block; <span> {{ theme.brightBlack.toLowerCase() }}</span>
</p>
<p :style="'color: ' + theme.brightRed">
&block;&block;&block; <span>*** AaBbMmYyZz 10 ---</span> &block;&block;&block; <span> {{ theme.brightRed.toLowerCase() }}</span>
</p>
<p :style="'color: ' + theme.brightGreen">
&block;&block;&block; <span>*** AaBbMmYyZz 11 ---</span> &block;&block;&block; <span> {{ theme.brightGreen.toLowerCase() }}</span>
</p>
<p :style="'color: ' + theme.brightYellow">
&block;&block;&block; <span>*** AaBbMmYyZz 12 ---</span> &block;&block;&block; <span> {{ theme.brightYellow.toLowerCase() }}</span>
</p>
<p :style="'color: ' + theme.brightBlue">
&block;&block;&block; <span>*** AaBbMmYyZz 13 ---</span> &block;&block;&block; <span> {{ theme.brightBlue.toLowerCase() }}</span>
</p>
<p :style="'color: ' + theme.brightPurple">
&block;&block;&block; <span>*** AaBbMmYyZz 14 ---</span> &block;&block;&block; <span> {{ theme.brightPurple.toLowerCase() }}</span>
</p>
<p :style="'color: ' + theme.brightCyan">
&block;&block;&block; <span>*** AaBbMmYyZz 15 ---</span> &block;&block;&block; <span> {{ theme.brightCyan.toLowerCase() }}</span>
</p>
<p :style="'color: ' + theme.brightWhite">
&block;&block;&block; <span>*** AaBbMmYyZz 16 ---</span> &block;&block;&block; <span> {{ theme.brightWhite.toLowerCase() }}</span>
</p>
<div class="row">
<div class="col-sm-6 col-md-12 col-lg-6 col-xl-6">
<div class="body__txt">
<p :style="'color: ' + theme.color_01">
<span> AaBbMmYyZz - {{ theme.color_01 }}</span>
</p>
<p :style="'color: ' + theme.color_02">
<span> AaBbMmYyZz - {{ theme.color_02 }}</span>
</p>
<p :style="'color: ' + theme.color_03">
<span> AaBbMmYyZz - {{ theme.color_03 }}</span>
</p>
<p :style="'color: ' + theme.color_04">
<span> AaBbMmYyZz - {{ theme.color_04 }}</span>
</p>
<p :style="'color: ' + theme.color_05">
<span> AaBbMmYyZz - {{ theme.color_05 }}</span>
</p>
<p :style="'color: ' + theme.color_06">
<span> AaBbMmYyZz - {{ theme.color_06 }}</span>
</p>
<p :style="'color: ' + theme.color_07">
<span> AaBbMmYyZz - {{ theme.color_07 }}</span>
</p>
<p :style="'color: ' + theme.color_08">
<span> AaBbMmYyZz - {{ theme.color_08 }}</span>
</p>
</div>
</div>
<div class="col-sm-6 col-md-12 col-lg-6 col-xl-6">
<div class="body__txt">
<p :style="'color: ' + theme.color_09">
<span> AaBbMmYyZz - {{ theme.color_09 }}</span>
</p>
<p :style="'color: ' + theme.color_10">
<span> AaBbMmYyZz - {{ theme.color_10 }}</span>
</p>
<p :style="'color: ' + theme.color_11">
<span> AaBbMmYyZz - {{ theme.color_11 }}</span>
</p>
<p :style="'color: ' + theme.color_12">
<span> AaBbMmYyZz - {{ theme.color_12 }}</span>
</p>
<p :style="'color: ' + theme.color_13">
<span> AaBbMmYyZz - {{ theme.color_13 }}</span>
</p>
<p :style="'color: ' + theme.color_14">
<span> AaBbMmYyZz - {{ theme.color_14 }}</span>
</p>
<p :style="'color: ' + theme.color_15">
<span> AaBbMmYyZz - {{ theme.color_15 }}</span>
</p>
<p :style="'color: ' + theme.color_16">
<span> AaBbMmYyZz - {{ theme.color_16 }}</span>
</p>
</div>
</div>
</div>
<div class="cmd">
<span class="cmd__ini" :style="'color: ' + theme.foreground">$ </span>
<span class="cmd__sudo" :style="'color: ' + theme.red">sudo </span>
<span class="cmd__apt" :style="'color: ' + theme.green">apt </span>
<span class="cmd__sudo" :style="'color: ' + theme.color_02">sudo </span>
<span class="cmd__apt" :style="'color: ' + theme.color_03">apt </span>
<span class="cmd__install" :style="'color: ' + theme.foreground">install </span>
<span class="cmd__linux" :style="'color: ' + theme.foreground">linux </span>
<span class="cmd__cursor" :style="'color: ' + theme.foreground">|</span>
<span class="cmd__cursor" :style="'color: ' + theme.cursor">|</span>
</div>
</div>

View File

@ -118,6 +118,7 @@ function sortColors (colors) {
*/
var $getUrl = 'https://raw.githubusercontent.com/Gogh-Co/Gogh/master/data/themes.json';
// var $getUrl = '../data/themes.json';
const $app = {
data () {

View File

@ -1,24 +1,22 @@
{
"name": "",
"name": "gogh",
"version": "1.0.0",
"description": "",
"main": "",
"scripts": {
"dev": "gulp dev",
"test": "echo \"Error: no test specified\" && exit 1"
"dev": "gulp dev"
},
"author": "",
"license": "",
"homepage": "",
"devDependencies": {
"gulp-sass": "^4.1.0"
},
"dependencies": {
"browser-sync": "^2.26.7",
"compass-mixins": "^0.12.10",
"browser-sync": "^2.27.12",
"compass-mixins": "^0.12.12",
"gulp": "^4.0.2",
"gulp-htmlmin": "^5.0.1",
"gulp-inline-source": "^4.0.0",
"gulp-rename": "^2.0.0"
"gulp-rename": "^2.0.0",
"gulp-sass": "^5.1.0",
"sass": "^1.58.3"
}
}

View File

@ -124,8 +124,12 @@
font-size : 16px;
@include m360 {}
@include m450 {}
@include m576 {}
@include m600 {}
@include m576 {
font-size : 11px;
}
@include m600 {
font-size : 12px;
}
@include m768 {
letter-spacing: 1px;
font-size : 12px;
@ -133,12 +137,14 @@
@include m900 {}
@include m992 {
letter-spacing: 1.5px;
font-size : 15px;
font-size : 13px;
}
@include m1200 {
font-size: 10px;
font-size: 12px;
}
@include m1400 {
font-size: 14px;
}
@include m1400 {}
@include m1800 {}
@include m2200 {}
}
@ -161,7 +167,7 @@
}
}
@keyframes "blink" {
@keyframes blink {
from,
to {
opacity: 0;

27
gogh.sh
View File

@ -18,7 +18,7 @@ declare -a THEMES=(
'3024-night.sh'
'aci.sh'
'aco.sh'
'adventuretime.sh'
'adventure-time.sh'
'afterglow.sh'
'alien-blood.sh'
'argonaut.sh'
@ -37,10 +37,10 @@ declare -a THEMES=(
'bluloco-light.sh'
'bluloco-zsh-light.sh'
'borland.sh'
'breath-darker.sh'
'breath-light.sh'
'breath-silverfox.sh'
'breath.sh'
'breath-darker.sh'
'breeze.sh'
'broadcast.sh'
'brogrammer.sh'
@ -56,8 +56,8 @@ declare -a THEMES=(
'ciapre.sh'
'clone-of-ubuntu.sh'
'clrs.sh'
'cobalt-2.sh'
'cobalt-neon.sh'
'cobalt2.sh'
'colorcli.sh'
'crayon-pony-fish.sh'
'dark-pastel.sh'
@ -77,8 +77,8 @@ declare -a THEMES=(
'everblush.sh'
'everforest-dark.sh'
'everforest-light.sh'
'fairyfloss.sh'
'fairyflossdark.sh'
'fairy-floss-dark.sh'
'fairy-floss.sh'
'fishtank.sh'
'flat-remix.sh'
'flat.sh'
@ -110,8 +110,8 @@ declare -a THEMES=(
'horizon-dark.sh'
'hurtado.sh'
'hybrid.sh'
'ibm-3270-high-contrast.sh'
'ibm3270.sh'
'ibm3270-hicontrast.sh'
'ic-green-ppl.sh'
'ic-orange-ppl.sh'
'idle-toes.sh'
@ -148,8 +148,8 @@ declare -a THEMES=(
'mono-white.sh'
'mono-yellow.sh'
'monokai-dark.sh'
'monokai-pro.sh'
'monokai-pro-ristretto.sh'
'monokai-pro.sh'
'monokai-soda.sh'
'morada.sh'
'n0tch2k.sh'
@ -158,7 +158,6 @@ declare -a THEMES=(
'nep.sh'
'neutron.sh'
'night-owl.sh'
'nightfox.sh'
'nightlion-v1.sh'
'nightlion-v2.sh'
'nighty.sh'
@ -225,8 +224,8 @@ declare -a THEMES=(
'sweet-eliverlara.sh'
'sweet-terminal.sh'
'symphonic.sh'
'synthwave.sh'
'synthwave-alpha.sh'
'synthwave.sh'
'teerb.sh'
'tender.sh'
'terminal-basic.sh'
@ -249,8 +248,8 @@ declare -a THEMES=(
'vag.sh'
'vaughn.sh'
'vibrant-ink.sh'
'vs-code-dark-plus.sh'
'vs-code-light-plus.sh'
'vs-code-dark.sh'
'vs-code-light.sh'
'warm-neon.sh'
'wez.sh'
'wild-cherry.sh'
@ -285,14 +284,14 @@ set_gogh() {
string_r="${string%???}"
string_s=${string_r//\./_}
result=$(capitalize "${string_s}")
url="${BASE_URL}/themes/$1"
url="${BASE_URL}/installs/$1"
export {PROFILE_NAME,PROFILE_SLUG}="$result"
# Evaluate if Gogh was called from local source - i.e cloned repo
SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
if [[ -e "${SCRIPT_PATH}/themes/$1" ]]; then
bash "${SCRIPT_PATH}/themes/$1"
if [[ -e "${SCRIPT_PATH}/installs/$1" ]]; then
bash "${SCRIPT_PATH}/installs/$1"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl

View File

@ -1,25 +0,0 @@
---
name: Gogh
color-01: "#243342" # Black (Host)
color-02: "#c54133" # Red (Syntax string)
color-03: "#27ae60" # Green (Command)
color-04: "#edb20a" # Yellow (Command second)
color-05: "#2479d0" # Blue (Path)
color-06: "#7d3ea0" # Magenta (Syntax var)
color-07: "#1d8579" # Cyan (Promp)
color-08: "#c9cccd" # Light Gray
color-09: "#34495E" # Dark Gray
color-10: "#E74C3C" # Light Red (Command error)
color-11: "#2ECC71" # Light Green (Exec)
color-12: "#F1C40F" # Light Yellow
color-13: "#3498DB" # Light Blue (Folder)
color-14: "#9B59B6" # Light Magenta
color-15: "#2AA198" # Light Cyan
color-16: "#ECF0F1" # White
background: "#0D1926" # Background Color
foreground: "#ECF0F1" # Foreground Color (Text)
cursor: "#edb20a" # Cursor

49
installs/3024-day.sh Executable file
View File

@ -0,0 +1,49 @@
#!/usr/bin/env bash
export PROFILE_NAME="3024 Day"
export COLOR_01="#090300" # Black (Host)
export COLOR_02="#DB2D20" # Red (Syntax string)
export COLOR_03="#01A252" # Green (Command)
export COLOR_04="#FDED02" # Yellow (Command second)
export COLOR_05="#01A0E4" # Blue (Path)
export COLOR_06="#A16A94" # Magenta (Syntax var)
export COLOR_07="#B5E4F4" # Cyan (Prompt)
export COLOR_08="#A5A2A2" # White
export COLOR_09="#5C5855" # Bright Black
export COLOR_10="#E8BBD0" # Bright Red (Command error)
export COLOR_11="#3A3432" # Bright Green (Exec)
export COLOR_12="#4A4543" # Bright Yellow
export COLOR_13="#807D7C" # Bright Blue (Folder)
export COLOR_14="#D6D5D4" # Bright Magenta
export COLOR_15="#CDAB53" # Bright Cyan
export COLOR_16="#F7F7F7" # Bright White
export BACKGROUND_COLOR="#F7F7F7" # Background
export FOREGROUND_COLOR="#4A4543" # Foreground (Text)
export CURSOR_COLOR="#4A4543" # Cursor
# | ===========================================================================
# | Apply Colors
# | ===========================================================================
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

49
installs/3024-night.sh Executable file
View File

@ -0,0 +1,49 @@
#!/usr/bin/env bash
export PROFILE_NAME="3024 Night"
export COLOR_01="#090300" # Black (Host)
export COLOR_02="#DB2D20" # Red (Syntax string)
export COLOR_03="#01A252" # Green (Command)
export COLOR_04="#FDED02" # Yellow (Command second)
export COLOR_05="#01A0E4" # Blue (Path)
export COLOR_06="#A16A94" # Magenta (Syntax var)
export COLOR_07="#B5E4F4" # Cyan (Prompt)
export COLOR_08="#A5A2A2" # White
export COLOR_09="#5C5855" # Bright Black
export COLOR_10="#E8BBD0" # Bright Red (Command error)
export COLOR_11="#3A3432" # Bright Green (Exec)
export COLOR_12="#4A4543" # Bright Yellow
export COLOR_13="#807D7C" # Bright Blue (Folder)
export COLOR_14="#D6D5D4" # Bright Magenta
export COLOR_15="#CDAB53" # Bright Cyan
export COLOR_16="#F7F7F7" # Bright White
export BACKGROUND_COLOR="#090300" # Background
export FOREGROUND_COLOR="#A5A2A2" # Foreground (Text)
export CURSOR_COLOR="#A5A2A2" # Cursor
# | ===========================================================================
# | Apply Colors
# | ===========================================================================
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

49
installs/aci.sh Executable file
View File

@ -0,0 +1,49 @@
#!/usr/bin/env bash
export PROFILE_NAME="Aci"
export COLOR_01="#363636" # Black (Host)
export COLOR_02="#FF0883" # Red (Syntax string)
export COLOR_03="#83FF08" # Green (Command)
export COLOR_04="#FF8308" # Yellow (Command second)
export COLOR_05="#0883FF" # Blue (Path)
export COLOR_06="#8308FF" # Magenta (Syntax var)
export COLOR_07="#08FF83" # Cyan (Prompt)
export COLOR_08="#B6B6B6" # White
export COLOR_09="#424242" # Bright Black
export COLOR_10="#FF1E8E" # Bright Red (Command error)
export COLOR_11="#8EFF1E" # Bright Green (Exec)
export COLOR_12="#FF8E1E" # Bright Yellow
export COLOR_13="#1E8EFF" # Bright Blue (Folder)
export COLOR_14="#8E1EFF" # Bright Magenta
export COLOR_15="#1EFF8E" # Bright Cyan
export COLOR_16="#C2C2C2" # Bright White
export BACKGROUND_COLOR="#0D1926" # Background
export FOREGROUND_COLOR="#B4E1FD" # Foreground (Text)
export CURSOR_COLOR="#B4E1FD" # Cursor
# | ===========================================================================
# | Apply Colors
# | ===========================================================================
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

49
installs/aco.sh Executable file
View File

@ -0,0 +1,49 @@
#!/usr/bin/env bash
export PROFILE_NAME="Aco"
export COLOR_01="#3F3F3F" # Black (Host)
export COLOR_02="#FF0883" # Red (Syntax string)
export COLOR_03="#83FF08" # Green (Command)
export COLOR_04="#FF8308" # Yellow (Command second)
export COLOR_05="#0883FF" # Blue (Path)
export COLOR_06="#8308FF" # Magenta (Syntax var)
export COLOR_07="#08FF83" # Cyan (Prompt)
export COLOR_08="#BEBEBE" # White
export COLOR_09="#474747" # Bright Black
export COLOR_10="#FF1E8E" # Bright Red (Command error)
export COLOR_11="#8EFF1E" # Bright Green (Exec)
export COLOR_12="#FF8E1E" # Bright Yellow
export COLOR_13="#1E8EFF" # Bright Blue (Folder)
export COLOR_14="#8E1EFF" # Bright Magenta
export COLOR_15="#1EFF8E" # Bright Cyan
export COLOR_16="#C4C4C4" # Bright White
export BACKGROUND_COLOR="#1F1305" # Background
export FOREGROUND_COLOR="#B4E1FD" # Foreground (Text)
export CURSOR_COLOR="#B4E1FD" # Cursor
# | ===========================================================================
# | Apply Colors
# | ===========================================================================
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

49
installs/adventure-time.sh Executable file
View File

@ -0,0 +1,49 @@
#!/usr/bin/env bash
export PROFILE_NAME="Adventure Time"
export COLOR_01="#050404" # Black (Host)
export COLOR_02="#BD0013" # Red (Syntax string)
export COLOR_03="#4AB118" # Green (Command)
export COLOR_04="#E7741E" # Yellow (Command second)
export COLOR_05="#0F4AC6" # Blue (Path)
export COLOR_06="#665993" # Magenta (Syntax var)
export COLOR_07="#70A598" # Cyan (Prompt)
export COLOR_08="#F8DCC0" # White
export COLOR_09="#4E7CBF" # Bright Black
export COLOR_10="#FC5F5A" # Bright Red (Command error)
export COLOR_11="#9EFF6E" # Bright Green (Exec)
export COLOR_12="#EFC11A" # Bright Yellow
export COLOR_13="#1997C6" # Bright Blue (Folder)
export COLOR_14="#9B5953" # Bright Magenta
export COLOR_15="#C8FAF4" # Bright Cyan
export COLOR_16="#F6F5FB" # Bright White
export BACKGROUND_COLOR="#1F1D45" # Background
export FOREGROUND_COLOR="#F8DCC0" # Foreground (Text)
export CURSOR_COLOR="#F8DCC0" # Cursor
# | ===========================================================================
# | Apply Colors
# | ===========================================================================
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

49
installs/afterglow.sh Executable file
View File

@ -0,0 +1,49 @@
#!/usr/bin/env bash
export PROFILE_NAME="Afterglow"
export COLOR_01="#151515" # Black (Host)
export COLOR_02="#A53C23" # Red (Syntax string)
export COLOR_03="#7B9246" # Green (Command)
export COLOR_04="#D3A04D" # Yellow (Command second)
export COLOR_05="#6C99BB" # Blue (Path)
export COLOR_06="#9F4E85" # Magenta (Syntax var)
export COLOR_07="#7DD6CF" # Cyan (Prompt)
export COLOR_08="#D0D0D0" # White
export COLOR_09="#505050" # Bright Black
export COLOR_10="#A53C23" # Bright Red (Command error)
export COLOR_11="#7B9246" # Bright Green (Exec)
export COLOR_12="#D3A04D" # Bright Yellow
export COLOR_13="#547C99" # Bright Blue (Folder)
export COLOR_14="#9F4E85" # Bright Magenta
export COLOR_15="#7DD6CF" # Bright Cyan
export COLOR_16="#F5F5F5" # Bright White
export BACKGROUND_COLOR="#222222" # Background
export FOREGROUND_COLOR="#D0D0D0" # Foreground (Text)
export CURSOR_COLOR="#D0D0D0" # Cursor
# | ===========================================================================
# | Apply Colors
# | ===========================================================================
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

49
installs/alien-blood.sh Executable file
View File

@ -0,0 +1,49 @@
#!/usr/bin/env bash
export PROFILE_NAME="Alien Blood"
export COLOR_01="#112616" # Black (Host)
export COLOR_02="#7F2B27" # Red (Syntax string)
export COLOR_03="#2F7E25" # Green (Command)
export COLOR_04="#717F24" # Yellow (Command second)
export COLOR_05="#2F6A7F" # Blue (Path)
export COLOR_06="#47587F" # Magenta (Syntax var)
export COLOR_07="#327F77" # Cyan (Prompt)
export COLOR_08="#647D75" # White
export COLOR_09="#3C4812" # Bright Black
export COLOR_10="#E08009" # Bright Red (Command error)
export COLOR_11="#18E000" # Bright Green (Exec)
export COLOR_12="#BDE000" # Bright Yellow
export COLOR_13="#00AAE0" # Bright Blue (Folder)
export COLOR_14="#0058E0" # Bright Magenta
export COLOR_15="#00E0C4" # Bright Cyan
export COLOR_16="#73FA91" # Bright White
export BACKGROUND_COLOR="#0F1610" # Background
export FOREGROUND_COLOR="#637D75" # Foreground (Text)
export CURSOR_COLOR="#637D75" # Cursor
# | ===========================================================================
# | Apply Colors
# | ===========================================================================
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

49
installs/argonaut.sh Executable file
View File

@ -0,0 +1,49 @@
#!/usr/bin/env bash
export PROFILE_NAME="Argonaut"
export COLOR_01="#232323" # Black (Host)
export COLOR_02="#FF000F" # Red (Syntax string)
export COLOR_03="#8CE10B" # Green (Command)
export COLOR_04="#FFB900" # Yellow (Command second)
export COLOR_05="#008DF8" # Blue (Path)
export COLOR_06="#6D43A6" # Magenta (Syntax var)
export COLOR_07="#00D8EB" # Cyan (Prompt)
export COLOR_08="#FFFFFF" # White
export COLOR_09="#444444" # Bright Black
export COLOR_10="#FF2740" # Bright Red (Command error)
export COLOR_11="#ABE15B" # Bright Green (Exec)
export COLOR_12="#FFD242" # Bright Yellow
export COLOR_13="#0092FF" # Bright Blue (Folder)
export COLOR_14="#9A5FEB" # Bright Magenta
export COLOR_15="#67FFF0" # Bright Cyan
export COLOR_16="#FFFFFF" # Bright White
export BACKGROUND_COLOR="#0E1019" # Background
export FOREGROUND_COLOR="#FFFAF4" # Foreground (Text)
export CURSOR_COLOR="#FFFAF4" # Cursor
# | ===========================================================================
# | Apply Colors
# | ===========================================================================
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

49
installs/arthur.sh Executable file
View File

@ -0,0 +1,49 @@
#!/usr/bin/env bash
export PROFILE_NAME="Arthur"
export COLOR_01="#3D352A" # Black (Host)
export COLOR_02="#CD5C5C" # Red (Syntax string)
export COLOR_03="#86AF80" # Green (Command)
export COLOR_04="#E8AE5B" # Yellow (Command second)
export COLOR_05="#6495ED" # Blue (Path)
export COLOR_06="#DEB887" # Magenta (Syntax var)
export COLOR_07="#B0C4DE" # Cyan (Prompt)
export COLOR_08="#BBAA99" # White
export COLOR_09="#554444" # Bright Black
export COLOR_10="#CC5533" # Bright Red (Command error)
export COLOR_11="#88AA22" # Bright Green (Exec)
export COLOR_12="#FFA75D" # Bright Yellow
export COLOR_13="#87CEEB" # Bright Blue (Folder)
export COLOR_14="#996600" # Bright Magenta
export COLOR_15="#B0C4DE" # Bright Cyan
export COLOR_16="#DDCCBB" # Bright White
export BACKGROUND_COLOR="#1C1C1C" # Background
export FOREGROUND_COLOR="#DDEEDD" # Foreground (Text)
export CURSOR_COLOR="#DDEEDD" # Cursor
# | ===========================================================================
# | Apply Colors
# | ===========================================================================
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

49
installs/atom.sh Executable file
View File

@ -0,0 +1,49 @@
#!/usr/bin/env bash
export PROFILE_NAME="Atom"
export COLOR_01="#000000" # Black (Host)
export COLOR_02="#FD5FF1" # Red (Syntax string)
export COLOR_03="#87C38A" # Green (Command)
export COLOR_04="#FFD7B1" # Yellow (Command second)
export COLOR_05="#85BEFD" # Blue (Path)
export COLOR_06="#B9B6FC" # Magenta (Syntax var)
export COLOR_07="#85BEFD" # Cyan (Prompt)
export COLOR_08="#E0E0E0" # White
export COLOR_09="#000000" # Bright Black
export COLOR_10="#FD5FF1" # Bright Red (Command error)
export COLOR_11="#94FA36" # Bright Green (Exec)
export COLOR_12="#F5FFA8" # Bright Yellow
export COLOR_13="#96CBFE" # Bright Blue (Folder)
export COLOR_14="#B9B6FC" # Bright Magenta
export COLOR_15="#85BEFD" # Bright Cyan
export COLOR_16="#E0E0E0" # Bright White
export BACKGROUND_COLOR="#161719" # Background
export FOREGROUND_COLOR="#C5C8C6" # Foreground (Text)
export CURSOR_COLOR="#C5C8C6" # Cursor
# | ===========================================================================
# | Apply Colors
# | ===========================================================================
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

49
installs/aura.sh Executable file
View File

@ -0,0 +1,49 @@
#!/usr/bin/env bash
export PROFILE_NAME="Aura"
export COLOR_01="#110F18" # Black (Host)
export COLOR_02="#FF6767" # Red (Syntax string)
export COLOR_03="#61FFCA" # Green (Command)
export COLOR_04="#FFCA85" # Yellow (Command second)
export COLOR_05="#A277FF" # Blue (Path)
export COLOR_06="#A277FF" # Magenta (Syntax var)
export COLOR_07="#61FFCA" # Cyan (Prompt)
export COLOR_08="#EDECEE" # White
export COLOR_09="#6D6D6D" # Bright Black
export COLOR_10="#FFCA85" # Bright Red (Command error)
export COLOR_11="#A277FF" # Bright Green (Exec)
export COLOR_12="#FFCA85" # Bright Yellow
export COLOR_13="#A277FF" # Bright Blue (Folder)
export COLOR_14="#A277FF" # Bright Magenta
export COLOR_15="#61FFCA" # Bright Cyan
export COLOR_16="#EDECEE" # Bright White
export BACKGROUND_COLOR="#15141B" # Background
export FOREGROUND_COLOR="#EDECEE" # Foreground (Text)
export CURSOR_COLOR="#EDECEE" # Cursor
# | ===========================================================================
# | Apply Colors
# | ===========================================================================
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

49
installs/ayu-dark.sh Executable file
View File

@ -0,0 +1,49 @@
#!/usr/bin/env bash
export PROFILE_NAME="Ayu Dark"
export COLOR_01="#0A0E14" # Black (Host)
export COLOR_02="#FF3333" # Red (Syntax string)
export COLOR_03="#C2D94C" # Green (Command)
export COLOR_04="#FF8F40" # Yellow (Command second)
export COLOR_05="#59C2FF" # Blue (Path)
export COLOR_06="#FFEE99" # Magenta (Syntax var)
export COLOR_07="#95E6CB" # Cyan (Prompt)
export COLOR_08="#B3B1AD" # White
export COLOR_09="#4D5566" # Bright Black
export COLOR_10="#FF3333" # Bright Red (Command error)
export COLOR_11="#C2D94C" # Bright Green (Exec)
export COLOR_12="#FF8F40" # Bright Yellow
export COLOR_13="#59C2FF" # Bright Blue (Folder)
export COLOR_14="#FFEE99" # Bright Magenta
export COLOR_15="#95E6CB" # Bright Cyan
export COLOR_16="#B3B1AD" # Bright White
export BACKGROUND_COLOR="#0A0E14" # Background
export FOREGROUND_COLOR="#B3B1AD" # Foreground (Text)
export CURSOR_COLOR="#E6B450" # Cursor
# | ===========================================================================
# | Apply Colors
# | ===========================================================================
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

49
installs/ayu-light.sh Executable file
View File

@ -0,0 +1,49 @@
#!/usr/bin/env bash
export PROFILE_NAME="Ayu Light"
export COLOR_01="#575F66" # Black (Host)
export COLOR_02="#F51818" # Red (Syntax string)
export COLOR_03="#86B300" # Green (Command)
export COLOR_04="#F2AE49" # Yellow (Command second)
export COLOR_05="#399EE6" # Blue (Path)
export COLOR_06="#A37ACC" # Magenta (Syntax var)
export COLOR_07="#4CBF99" # Cyan (Prompt)
export COLOR_08="#FAFAFA" # White
export COLOR_09="#8A9199" # Bright Black
export COLOR_10="#F51818" # Bright Red (Command error)
export COLOR_11="#86B300" # Bright Green (Exec)
export COLOR_12="#F2AE49" # Bright Yellow
export COLOR_13="#399EE6" # Bright Blue (Folder)
export COLOR_14="#A37ACC" # Bright Magenta
export COLOR_15="#4CBF99" # Bright Cyan
export COLOR_16="#FAFAFA" # Bright White
export BACKGROUND_COLOR="#FAFAFA" # Background
export FOREGROUND_COLOR="#575F66" # Foreground (Text)
export CURSOR_COLOR="#FF9940" # Cursor
# | ===========================================================================
# | Apply Colors
# | ===========================================================================
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

49
installs/ayu-mirage.sh Executable file
View File

@ -0,0 +1,49 @@
#!/usr/bin/env bash
export PROFILE_NAME="Ayu Mirage"
export COLOR_01="#1F2430" # Black (Host)
export COLOR_02="#FF3333" # Red (Syntax string)
export COLOR_03="#BAE67E" # Green (Command)
export COLOR_04="#FFA759" # Yellow (Command second)
export COLOR_05="#73D0FF" # Blue (Path)
export COLOR_06="#D4BFFF" # Magenta (Syntax var)
export COLOR_07="#95E6CB" # Cyan (Prompt)
export COLOR_08="#CBCCC6" # White
export COLOR_09="#707A8C" # Bright Black
export COLOR_10="#FF3333" # Bright Red (Command error)
export COLOR_11="#BAE67E" # Bright Green (Exec)
export COLOR_12="#FFA759" # Bright Yellow
export COLOR_13="#73D0FF" # Bright Blue (Folder)
export COLOR_14="#D4BFFF" # Bright Magenta
export COLOR_15="#95E6CB" # Bright Cyan
export COLOR_16="#CBCCC6" # Bright White
export BACKGROUND_COLOR="#1F2430" # Background
export FOREGROUND_COLOR="#CBCCC6" # Foreground (Text)
export CURSOR_COLOR="#FFCC66" # Cursor
# | ===========================================================================
# | Apply Colors
# | ===========================================================================
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

49
installs/azu.sh Executable file
View File

@ -0,0 +1,49 @@
#!/usr/bin/env bash
export PROFILE_NAME="Azu"
export COLOR_01="#000000" # Black (Host)
export COLOR_02="#AC6D74" # Red (Syntax string)
export COLOR_03="#74AC6D" # Green (Command)
export COLOR_04="#ACA46D" # Yellow (Command second)
export COLOR_05="#6D74AC" # Blue (Path)
export COLOR_06="#A46DAC" # Magenta (Syntax var)
export COLOR_07="#6DACA4" # Cyan (Prompt)
export COLOR_08="#E6E6E6" # White
export COLOR_09="#262626" # Bright Black
export COLOR_10="#D6B8BC" # Bright Red (Command error)
export COLOR_11="#BCD6B8" # Bright Green (Exec)
export COLOR_12="#D6D3B8" # Bright Yellow
export COLOR_13="#B8BCD6" # Bright Blue (Folder)
export COLOR_14="#D3B8D6" # Bright Magenta
export COLOR_15="#B8D6D3" # Bright Cyan
export COLOR_16="#FFFFFF" # Bright White
export BACKGROUND_COLOR="#09111A" # Background
export FOREGROUND_COLOR="#D9E6F2" # Foreground (Text)
export CURSOR_COLOR="#D9E6F2" # Cursor
# | ===========================================================================
# | Apply Colors
# | ===========================================================================
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

49
installs/belafonte-day.sh Executable file
View File

@ -0,0 +1,49 @@
#!/usr/bin/env bash
export PROFILE_NAME="Belafonte Day"
export COLOR_01="#20111B" # Black (Host)
export COLOR_02="#BE100E" # Red (Syntax string)
export COLOR_03="#858162" # Green (Command)
export COLOR_04="#EAA549" # Yellow (Command second)
export COLOR_05="#426A79" # Blue (Path)
export COLOR_06="#97522C" # Magenta (Syntax var)
export COLOR_07="#989A9C" # Cyan (Prompt)
export COLOR_08="#968C83" # White
export COLOR_09="#5E5252" # Bright Black
export COLOR_10="#BE100E" # Bright Red (Command error)
export COLOR_11="#858162" # Bright Green (Exec)
export COLOR_12="#EAA549" # Bright Yellow
export COLOR_13="#426A79" # Bright Blue (Folder)
export COLOR_14="#97522C" # Bright Magenta
export COLOR_15="#989A9C" # Bright Cyan
export COLOR_16="#D5CCBA" # Bright White
export BACKGROUND_COLOR="#D5CCBA" # Background
export FOREGROUND_COLOR="#45373C" # Foreground (Text)
export CURSOR_COLOR="#45373C" # Cursor
# | ===========================================================================
# | Apply Colors
# | ===========================================================================
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

49
installs/belafonte-night.sh Executable file
View File

@ -0,0 +1,49 @@
#!/usr/bin/env bash
export PROFILE_NAME="Belafonte Night"
export COLOR_01="#20111B" # Black (Host)
export COLOR_02="#BE100E" # Red (Syntax string)
export COLOR_03="#858162" # Green (Command)
export COLOR_04="#EAA549" # Yellow (Command second)
export COLOR_05="#426A79" # Blue (Path)
export COLOR_06="#97522C" # Magenta (Syntax var)
export COLOR_07="#989A9C" # Cyan (Prompt)
export COLOR_08="#968C83" # White
export COLOR_09="#5E5252" # Bright Black
export COLOR_10="#BE100E" # Bright Red (Command error)
export COLOR_11="#858162" # Bright Green (Exec)
export COLOR_12="#EAA549" # Bright Yellow
export COLOR_13="#426A79" # Bright Blue (Folder)
export COLOR_14="#97522C" # Bright Magenta
export COLOR_15="#989A9C" # Bright Cyan
export COLOR_16="#D5CCBA" # Bright White
export BACKGROUND_COLOR="#20111B" # Background
export FOREGROUND_COLOR="#968C83" # Foreground (Text)
export CURSOR_COLOR="#968C83" # Cursor
# | ===========================================================================
# | Apply Colors
# | ===========================================================================
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

49
installs/bim.sh Executable file
View File

@ -0,0 +1,49 @@
#!/usr/bin/env bash
export PROFILE_NAME="Bim"
export COLOR_01="#2C2423" # Black (Host)
export COLOR_02="#F557A0" # Red (Syntax string)
export COLOR_03="#A9EE55" # Green (Command)
export COLOR_04="#F5A255" # Yellow (Command second)
export COLOR_05="#5EA2EC" # Blue (Path)
export COLOR_06="#A957EC" # Magenta (Syntax var)
export COLOR_07="#5EEEA0" # Cyan (Prompt)
export COLOR_08="#918988" # White
export COLOR_09="#918988" # Bright Black
export COLOR_10="#F579B2" # Bright Red (Command error)
export COLOR_11="#BBEE78" # Bright Green (Exec)
export COLOR_12="#F5B378" # Bright Yellow
export COLOR_13="#81B3EC" # Bright Blue (Folder)
export COLOR_14="#BB79EC" # Bright Magenta
export COLOR_15="#81EEB2" # Bright Cyan
export COLOR_16="#F5EEEC" # Bright White
export BACKGROUND_COLOR="#012849" # Background
export FOREGROUND_COLOR="#A9BED8" # Foreground (Text)
export CURSOR_COLOR="#A9BED8" # Cursor
# | ===========================================================================
# | Apply Colors
# | ===========================================================================
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

49
installs/birds-of-paradise.sh Executable file
View File

@ -0,0 +1,49 @@
#!/usr/bin/env bash
export PROFILE_NAME="Birds Of Paradise"
export COLOR_01="#573D26" # Black (Host)
export COLOR_02="#BE2D26" # Red (Syntax string)
export COLOR_03="#6BA18A" # Green (Command)
export COLOR_04="#E99D2A" # Yellow (Command second)
export COLOR_05="#5A86AD" # Blue (Path)
export COLOR_06="#AC80A6" # Magenta (Syntax var)
export COLOR_07="#74A6AD" # Cyan (Prompt)
export COLOR_08="#E0DBB7" # White
export COLOR_09="#9B6C4A" # Bright Black
export COLOR_10="#E84627" # Bright Red (Command error)
export COLOR_11="#95D8BA" # Bright Green (Exec)
export COLOR_12="#D0D150" # Bright Yellow
export COLOR_13="#B8D3ED" # Bright Blue (Folder)
export COLOR_14="#D19ECB" # Bright Magenta
export COLOR_15="#93CFD7" # Bright Cyan
export COLOR_16="#FFF9D5" # Bright White
export BACKGROUND_COLOR="#2A1F1D" # Background
export FOREGROUND_COLOR="#E0DBB7" # Foreground (Text)
export CURSOR_COLOR="#E0DBB7" # Cursor
# | ===========================================================================
# | Apply Colors
# | ===========================================================================
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

49
installs/blazer.sh Executable file
View File

@ -0,0 +1,49 @@
#!/usr/bin/env bash
export PROFILE_NAME="Blazer"
export COLOR_01="#000000" # Black (Host)
export COLOR_02="#B87A7A" # Red (Syntax string)
export COLOR_03="#7AB87A" # Green (Command)
export COLOR_04="#B8B87A" # Yellow (Command second)
export COLOR_05="#7A7AB8" # Blue (Path)
export COLOR_06="#B87AB8" # Magenta (Syntax var)
export COLOR_07="#7AB8B8" # Cyan (Prompt)
export COLOR_08="#D9D9D9" # White
export COLOR_09="#262626" # Bright Black
export COLOR_10="#DBBDBD" # Bright Red (Command error)
export COLOR_11="#BDDBBD" # Bright Green (Exec)
export COLOR_12="#DBDBBD" # Bright Yellow
export COLOR_13="#BDBDDB" # Bright Blue (Folder)
export COLOR_14="#DBBDDB" # Bright Magenta
export COLOR_15="#BDDBDB" # Bright Cyan
export COLOR_16="#FFFFFF" # Bright White
export BACKGROUND_COLOR="#0D1926" # Background
export FOREGROUND_COLOR="#D9E6F2" # Foreground (Text)
export CURSOR_COLOR="#D9E6F2" # Cursor
# | ===========================================================================
# | Apply Colors
# | ===========================================================================
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

49
installs/bluloco-light.sh Executable file
View File

@ -0,0 +1,49 @@
#!/usr/bin/env bash
export PROFILE_NAME="Bluloco Light"
export COLOR_01="#D5D6DD" # Black (Host)
export COLOR_02="#D52753" # Red (Syntax string)
export COLOR_03="#23974A" # Green (Command)
export COLOR_04="#DF631C" # Yellow (Command second)
export COLOR_05="#275FE4" # Blue (Path)
export COLOR_06="#823FF1" # Magenta (Syntax var)
export COLOR_07="#27618D" # Cyan (Prompt)
export COLOR_08="#000000" # White
export COLOR_09="#E4E5ED" # Bright Black
export COLOR_10="#FF6480" # Bright Red (Command error)
export COLOR_11="#3CBC66" # Bright Green (Exec)
export COLOR_12="#C5A332" # Bright Yellow
export COLOR_13="#0099E1" # Bright Blue (Folder)
export COLOR_14="#CE33C0" # Bright Magenta
export COLOR_15="#6D93BB" # Bright Cyan
export COLOR_16="#26272D" # Bright White
export BACKGROUND_COLOR="#F9F9F9" # Background
export FOREGROUND_COLOR="#383A42" # Foreground (Text)
export CURSOR_COLOR="#383A42" # Cursor
# | ===========================================================================
# | Apply Colors
# | ===========================================================================
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

49
installs/bluloco-zsh-light.sh Executable file
View File

@ -0,0 +1,49 @@
#!/usr/bin/env bash
export PROFILE_NAME="Bluloco Zsh Light"
export COLOR_01="#E4E5F1" # Black (Host)
export COLOR_02="#D52753" # Red (Syntax string)
export COLOR_03="#23974A" # Green (Command)
export COLOR_04="#DF631C" # Yellow (Command second)
export COLOR_05="#275FE4" # Blue (Path)
export COLOR_06="#823FF1" # Magenta (Syntax var)
export COLOR_07="#27618D" # Cyan (Prompt)
export COLOR_08="#000000" # White
export COLOR_09="#5794DE" # Bright Black
export COLOR_10="#FF6480" # Bright Red (Command error)
export COLOR_11="#3CBC66" # Bright Green (Exec)
export COLOR_12="#C5A332" # Bright Yellow
export COLOR_13="#0099E1" # Bright Blue (Folder)
export COLOR_14="#CE33C0" # Bright Magenta
export COLOR_15="#6D93BB" # Bright Cyan
export COLOR_16="#26272D" # Bright White
export BACKGROUND_COLOR="#F9F9F9" # Background
export FOREGROUND_COLOR="#383A42" # Foreground (Text)
export CURSOR_COLOR="#383A42" # Cursor
# | ===========================================================================
# | Apply Colors
# | ===========================================================================
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

49
installs/borland.sh Executable file
View File

@ -0,0 +1,49 @@
#!/usr/bin/env bash
export PROFILE_NAME="Borland"
export COLOR_01="#4F4F4F" # Black (Host)
export COLOR_02="#FF6C60" # Red (Syntax string)
export COLOR_03="#A8FF60" # Green (Command)
export COLOR_04="#FFFFB6" # Yellow (Command second)
export COLOR_05="#96CBFE" # Blue (Path)
export COLOR_06="#FF73FD" # Magenta (Syntax var)
export COLOR_07="#C6C5FE" # Cyan (Prompt)
export COLOR_08="#EEEEEE" # White
export COLOR_09="#7C7C7C" # Bright Black
export COLOR_10="#FFB6B0" # Bright Red (Command error)
export COLOR_11="#CEFFAC" # Bright Green (Exec)
export COLOR_12="#FFFFCC" # Bright Yellow
export COLOR_13="#B5DCFF" # Bright Blue (Folder)
export COLOR_14="#FF9CFE" # Bright Magenta
export COLOR_15="#DFDFFE" # Bright Cyan
export COLOR_16="#FFFFFF" # Bright White
export BACKGROUND_COLOR="#0000A4" # Background
export FOREGROUND_COLOR="#FFFF4E" # Foreground (Text)
export CURSOR_COLOR="#FFFF4E" # Cursor
# | ===========================================================================
# | Apply Colors
# | ===========================================================================
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

49
installs/breath-darker.sh Executable file
View File

@ -0,0 +1,49 @@
#!/usr/bin/env bash
export PROFILE_NAME="Breath Darker"
export COLOR_01="#1E2229" # Black (Host)
export COLOR_02="#ED1515" # Red (Syntax string)
export COLOR_03="#44853A" # Green (Command)
export COLOR_04="#F67400" # Yellow (Command second)
export COLOR_05="#1D99F3" # Blue (Path)
export COLOR_06="#9B59B6" # Magenta (Syntax var)
export COLOR_07="#1ABC9C" # Cyan (Prompt)
export COLOR_08="#FCFCFC" # White
export COLOR_09="#7F8C8D" # Bright Black
export COLOR_10="#C0392B" # Bright Red (Command error)
export COLOR_11="#55A649" # Bright Green (Exec)
export COLOR_12="#FDBC4B" # Bright Yellow
export COLOR_13="#3DAEE9" # Bright Blue (Folder)
export COLOR_14="#8E44AD" # Bright Magenta
export COLOR_15="#16A085" # Bright Cyan
export COLOR_16="#FFFFFF" # Bright White
export BACKGROUND_COLOR="#080D14" # Background
export FOREGROUND_COLOR="#17A88B" # Foreground (Text)
export CURSOR_COLOR="#17A88B" # Cursor
# | ===========================================================================
# | Apply Colors
# | ===========================================================================
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

49
installs/breath-light.sh Executable file
View File

@ -0,0 +1,49 @@
#!/usr/bin/env bash
export PROFILE_NAME="Breath Light"
export COLOR_01="#E8E8E8" # Black (Host)
export COLOR_02="#ED1515" # Red (Syntax string)
export COLOR_03="#C0392B" # Green (Command)
export COLOR_04="#F67400" # Yellow (Command second)
export COLOR_05="#1D99F3" # Blue (Path)
export COLOR_06="#9B59B6" # Magenta (Syntax var)
export COLOR_07="#1ABC9C" # Cyan (Prompt)
export COLOR_08="#FCFCFC" # White
export COLOR_09="#7F8C8D" # Bright Black
export COLOR_10="#C0392B" # Bright Red (Command error)
export COLOR_11="#55A649" # Bright Green (Exec)
export COLOR_12="#FDBC4B" # Bright Yellow
export COLOR_13="#3DAEE9" # Bright Blue (Folder)
export COLOR_14="#8E44AD" # Bright Magenta
export COLOR_15="#16A085" # Bright Cyan
export COLOR_16="#FFFFFF" # Bright White
export BACKGROUND_COLOR="#E8E8E8" # Background
export FOREGROUND_COLOR="#292F34" # Foreground (Text)
export CURSOR_COLOR="#292F34" # Cursor
# | ===========================================================================
# | Apply Colors
# | ===========================================================================
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

49
installs/breath-silverfox.sh Executable file
View File

@ -0,0 +1,49 @@
#!/usr/bin/env bash
export PROFILE_NAME="Breath Silverfox"
export COLOR_01="#1E2229" # Black (Host)
export COLOR_02="#ED1515" # Red (Syntax string)
export COLOR_03="#44853A" # Green (Command)
export COLOR_04="#F67400" # Yellow (Command second)
export COLOR_05="#1D99F3" # Blue (Path)
export COLOR_06="#9B59B6" # Magenta (Syntax var)
export COLOR_07="#1ABC9C" # Cyan (Prompt)
export COLOR_08="#FCFCFC" # White
export COLOR_09="#7F8C8D" # Bright Black
export COLOR_10="#C0392B" # Bright Red (Command error)
export COLOR_11="#55A649" # Bright Green (Exec)
export COLOR_12="#FDBC4B" # Bright Yellow
export COLOR_13="#3DAEE9" # Bright Blue (Folder)
export COLOR_14="#8E44AD" # Bright Magenta
export COLOR_15="#16A085" # Bright Cyan
export COLOR_16="#FFFFFF" # Bright White
export BACKGROUND_COLOR="#1E2229" # Background
export FOREGROUND_COLOR="#BBBBBB" # Foreground (Text)
export CURSOR_COLOR="#BBBBBB" # Cursor
# | ===========================================================================
# | Apply Colors
# | ===========================================================================
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

49
installs/breath.sh Executable file
View File

@ -0,0 +1,49 @@
#!/usr/bin/env bash
export PROFILE_NAME="Breath"
export COLOR_01="#1E2229" # Black (Host)
export COLOR_02="#ED1515" # Red (Syntax string)
export COLOR_03="#44853A" # Green (Command)
export COLOR_04="#F67400" # Yellow (Command second)
export COLOR_05="#1D99F3" # Blue (Path)
export COLOR_06="#9B59B6" # Magenta (Syntax var)
export COLOR_07="#1ABC9C" # Cyan (Prompt)
export COLOR_08="#FCFCFC" # White
export COLOR_09="#7F8C8D" # Bright Black
export COLOR_10="#C0392B" # Bright Red (Command error)
export COLOR_11="#55A649" # Bright Green (Exec)
export COLOR_12="#FDBC4B" # Bright Yellow
export COLOR_13="#3DAEE9" # Bright Blue (Folder)
export COLOR_14="#8E44AD" # Bright Magenta
export COLOR_15="#16A085" # Bright Cyan
export COLOR_16="#FFFFFF" # Bright White
export BACKGROUND_COLOR="#1E2229" # Background
export FOREGROUND_COLOR="#17A88B" # Foreground (Text)
export CURSOR_COLOR="#17A88B" # Cursor
# | ===========================================================================
# | Apply Colors
# | ===========================================================================
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

49
installs/breeze.sh Executable file
View File

@ -0,0 +1,49 @@
#!/usr/bin/env bash
export PROFILE_NAME="Breeze"
export COLOR_01="#232627" # Black (Host)
export COLOR_02="#ED1515" # Red (Syntax string)
export COLOR_03="#11D116" # Green (Command)
export COLOR_04="#F67400" # Yellow (Command second)
export COLOR_05="#1D99F3" # Blue (Path)
export COLOR_06="#9B59B6" # Magenta (Syntax var)
export COLOR_07="#1ABC9C" # Cyan (Prompt)
export COLOR_08="#FCFCFC" # White
export COLOR_09="#7F8C8D" # Bright Black
export COLOR_10="#C0392B" # Bright Red (Command error)
export COLOR_11="#1CDC9A" # Bright Green (Exec)
export COLOR_12="#FDBC4B" # Bright Yellow
export COLOR_13="#3DAEE9" # Bright Blue (Folder)
export COLOR_14="#8E44AD" # Bright Magenta
export COLOR_15="#16A085" # Bright Cyan
export COLOR_16="#FFFFFF" # Bright White
export BACKGROUND_COLOR="#232627" # Background
export FOREGROUND_COLOR="#FCFCFC" # Foreground (Text)
export CURSOR_COLOR="#FCFCFC" # Cursor
# | ===========================================================================
# | Apply Colors
# | ===========================================================================
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

49
installs/broadcast.sh Executable file
View File

@ -0,0 +1,49 @@
#!/usr/bin/env bash
export PROFILE_NAME="Broadcast"
export COLOR_01="#000000" # Black (Host)
export COLOR_02="#DA4939" # Red (Syntax string)
export COLOR_03="#519F50" # Green (Command)
export COLOR_04="#FFD24A" # Yellow (Command second)
export COLOR_05="#6D9CBE" # Blue (Path)
export COLOR_06="#D0D0FF" # Magenta (Syntax var)
export COLOR_07="#6E9CBE" # Cyan (Prompt)
export COLOR_08="#FFFFFF" # White
export COLOR_09="#323232" # Bright Black
export COLOR_10="#FF7B6B" # Bright Red (Command error)
export COLOR_11="#83D182" # Bright Green (Exec)
export COLOR_12="#FFFF7C" # Bright Yellow
export COLOR_13="#9FCEF0" # Bright Blue (Folder)
export COLOR_14="#FFFFFF" # Bright Magenta
export COLOR_15="#A0CEF0" # Bright Cyan
export COLOR_16="#FFFFFF" # Bright White
export BACKGROUND_COLOR="#2B2B2B" # Background
export FOREGROUND_COLOR="#E6E1DC" # Foreground (Text)
export CURSOR_COLOR="#E6E1DC" # Cursor
# | ===========================================================================
# | Apply Colors
# | ===========================================================================
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

49
installs/brogrammer.sh Executable file
View File

@ -0,0 +1,49 @@
#!/usr/bin/env bash
export PROFILE_NAME="Brogrammer"
export COLOR_01="#1F1F1F" # Black (Host)
export COLOR_02="#F81118" # Red (Syntax string)
export COLOR_03="#2DC55E" # Green (Command)
export COLOR_04="#ECBA0F" # Yellow (Command second)
export COLOR_05="#2A84D2" # Blue (Path)
export COLOR_06="#4E5AB7" # Magenta (Syntax var)
export COLOR_07="#1081D6" # Cyan (Prompt)
export COLOR_08="#D6DBE5" # White
export COLOR_09="#D6DBE5" # Bright Black
export COLOR_10="#DE352E" # Bright Red (Command error)
export COLOR_11="#1DD361" # Bright Green (Exec)
export COLOR_12="#F3BD09" # Bright Yellow
export COLOR_13="#1081D6" # Bright Blue (Folder)
export COLOR_14="#5350B9" # Bright Magenta
export COLOR_15="#0F7DDB" # Bright Cyan
export COLOR_16="#FFFFFF" # Bright White
export BACKGROUND_COLOR="#131313" # Background
export FOREGROUND_COLOR="#D6DBE5" # Foreground (Text)
export CURSOR_COLOR="#D6DBE5" # Cursor
# | ===========================================================================
# | Apply Colors
# | ===========================================================================
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

49
installs/c64.sh Executable file
View File

@ -0,0 +1,49 @@
#!/usr/bin/env bash
export PROFILE_NAME="C64"
export COLOR_01="#090300" # Black (Host)
export COLOR_02="#883932" # Red (Syntax string)
export COLOR_03="#55A049" # Green (Command)
export COLOR_04="#BFCE72" # Yellow (Command second)
export COLOR_05="#40318D" # Blue (Path)
export COLOR_06="#8B3F96" # Magenta (Syntax var)
export COLOR_07="#67B6BD" # Cyan (Prompt)
export COLOR_08="#FFFFFF" # White
export COLOR_09="#000000" # Bright Black
export COLOR_10="#883932" # Bright Red (Command error)
export COLOR_11="#55A049" # Bright Green (Exec)
export COLOR_12="#BFCE72" # Bright Yellow
export COLOR_13="#40318D" # Bright Blue (Folder)
export COLOR_14="#8B3F96" # Bright Magenta
export COLOR_15="#67B6BD" # Bright Cyan
export COLOR_16="#F7F7F7" # Bright White
export BACKGROUND_COLOR="#40318D" # Background
export FOREGROUND_COLOR="#7869C4" # Foreground (Text)
export CURSOR_COLOR="#7869C4" # Cursor
# | ===========================================================================
# | Apply Colors
# | ===========================================================================
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

49
installs/cai.sh Executable file
View File

@ -0,0 +1,49 @@
#!/usr/bin/env bash
export PROFILE_NAME="Cai"
export COLOR_01="#000000" # Black (Host)
export COLOR_02="#CA274D" # Red (Syntax string)
export COLOR_03="#4DCA27" # Green (Command)
export COLOR_04="#CAA427" # Yellow (Command second)
export COLOR_05="#274DCA" # Blue (Path)
export COLOR_06="#A427CA" # Magenta (Syntax var)
export COLOR_07="#27CAA4" # Cyan (Prompt)
export COLOR_08="#808080" # White
export COLOR_09="#808080" # Bright Black
export COLOR_10="#E98DA3" # Bright Red (Command error)
export COLOR_11="#A3E98D" # Bright Green (Exec)
export COLOR_12="#E9D48D" # Bright Yellow
export COLOR_13="#8DA3E9" # Bright Blue (Folder)
export COLOR_14="#D48DE9" # Bright Magenta
export COLOR_15="#8DE9D4" # Bright Cyan
export COLOR_16="#FFFFFF" # Bright White
export BACKGROUND_COLOR="#09111A" # Background
export FOREGROUND_COLOR="#D9E6F2" # Foreground (Text)
export CURSOR_COLOR="#D9E6F2" # Cursor
# | ===========================================================================
# | Apply Colors
# | ===========================================================================
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

49
installs/catppuccin-frappe.sh Executable file
View File

@ -0,0 +1,49 @@
#!/usr/bin/env bash
export PROFILE_NAME="Catppuccin Frappé"
export COLOR_01="#51576D" # Black (Host)
export COLOR_02="#E78284" # Red (Syntax string)
export COLOR_03="#A6D189" # Green (Command)
export COLOR_04="#E5C890" # Yellow (Command second)
export COLOR_05="#8CAAEE" # Blue (Path)
export COLOR_06="#F4B8E4" # Magenta (Syntax var)
export COLOR_07="#81C8BE" # Cyan (Prompt)
export COLOR_08="#B5BFE2" # White
export COLOR_09="#626880" # Bright Black
export COLOR_10="#E78284" # Bright Red (Command error)
export COLOR_11="#A6D189" # Bright Green (Exec)
export COLOR_12="#E5C890" # Bright Yellow
export COLOR_13="#8CAAEE" # Bright Blue (Folder)
export COLOR_14="#F4B8E4" # Bright Magenta
export COLOR_15="#81C8BE" # Bright Cyan
export COLOR_16="#A5ADCE" # Bright White
export BACKGROUND_COLOR="#303446" # Background
export FOREGROUND_COLOR="#C6D0F5" # Foreground (Text)
export CURSOR_COLOR="#C6D0F5" # Cursor
# | ===========================================================================
# | Apply Colors
# | ===========================================================================
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

49
installs/catppuccin-latte.sh Executable file
View File

@ -0,0 +1,49 @@
#!/usr/bin/env bash
export PROFILE_NAME="Catppuccin Latte"
export COLOR_01="#5C5F77" # Black (Host)
export COLOR_02="#D20F39" # Red (Syntax string)
export COLOR_03="#40A02B" # Green (Command)
export COLOR_04="#DF8E1D" # Yellow (Command second)
export COLOR_05="#1E66F5" # Blue (Path)
export COLOR_06="#EA76CB" # Magenta (Syntax var)
export COLOR_07="#179299" # Cyan (Prompt)
export COLOR_08="#ACB0BE" # White
export COLOR_09="#6C6F85" # Bright Black
export COLOR_10="#D20F39" # Bright Red (Command error)
export COLOR_11="#40A02B" # Bright Green (Exec)
export COLOR_12="#DF8E1D" # Bright Yellow
export COLOR_13="#1E66F5" # Bright Blue (Folder)
export COLOR_14="#EA76CB" # Bright Magenta
export COLOR_15="#179299" # Bright Cyan
export COLOR_16="#BCC0CC" # Bright White
export BACKGROUND_COLOR="#EFF1F5" # Background
export FOREGROUND_COLOR="#4C4F69" # Foreground (Text)
export CURSOR_COLOR="#4C4F69" # Cursor
# | ===========================================================================
# | Apply Colors
# | ===========================================================================
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@ -0,0 +1,49 @@
#!/usr/bin/env bash
export PROFILE_NAME="Catppuccin Macchiato"
export COLOR_01="#494D64" # Black (Host)
export COLOR_02="#ED8796" # Red (Syntax string)
export COLOR_03="#A6DA95" # Green (Command)
export COLOR_04="#EED49F" # Yellow (Command second)
export COLOR_05="#8AADF4" # Blue (Path)
export COLOR_06="#F5BDE6" # Magenta (Syntax var)
export COLOR_07="#8BD5CA" # Cyan (Prompt)
export COLOR_08="#B8C0E0" # White
export COLOR_09="#5B6078" # Bright Black
export COLOR_10="#ED8796" # Bright Red (Command error)
export COLOR_11="#A6DA95" # Bright Green (Exec)
export COLOR_12="#EED49F" # Bright Yellow
export COLOR_13="#8AADF4" # Bright Blue (Folder)
export COLOR_14="#F5BDE6" # Bright Magenta
export COLOR_15="#8BD5CA" # Bright Cyan
export COLOR_16="#A5ADCB" # Bright White
export BACKGROUND_COLOR="#24273A" # Background
export FOREGROUND_COLOR="#CAD3F5" # Foreground (Text)
export CURSOR_COLOR="#CAD3F5" # Cursor
# | ===========================================================================
# | Apply Colors
# | ===========================================================================
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

49
installs/catppuccin-mocha.sh Executable file
View File

@ -0,0 +1,49 @@
#!/usr/bin/env bash
export PROFILE_NAME="Catppuccin Mocha"
export COLOR_01="#45475A" # Black (Host)
export COLOR_02="#F38BA8" # Red (Syntax string)
export COLOR_03="#A6E3A1" # Green (Command)
export COLOR_04="#F9E2AF" # Yellow (Command second)
export COLOR_05="#89B4FA" # Blue (Path)
export COLOR_06="#F5C2E7" # Magenta (Syntax var)
export COLOR_07="#94E2D5" # Cyan (Prompt)
export COLOR_08="#BAC2DE" # White
export COLOR_09="#585B70" # Bright Black
export COLOR_10="#F38BA8" # Bright Red (Command error)
export COLOR_11="#A6E3A1" # Bright Green (Exec)
export COLOR_12="#F9E2AF" # Bright Yellow
export COLOR_13="#89B4FA" # Bright Blue (Folder)
export COLOR_14="#F5C2E7" # Bright Magenta
export COLOR_15="#94E2D5" # Bright Cyan
export COLOR_16="#A6ADC8" # Bright White
export BACKGROUND_COLOR="#1E1E2E" # Background
export FOREGROUND_COLOR="#CDD6F4" # Foreground (Text)
export CURSOR_COLOR="#CDD6F4" # Cursor
# | ===========================================================================
# | Apply Colors
# | ===========================================================================
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

49
installs/chalk.sh Executable file
View File

@ -0,0 +1,49 @@
#!/usr/bin/env bash
export PROFILE_NAME="Chalk"
export COLOR_01="#646464" # Black (Host)
export COLOR_02="#F58E8E" # Red (Syntax string)
export COLOR_03="#A9D3AB" # Green (Command)
export COLOR_04="#FED37E" # Yellow (Command second)
export COLOR_05="#7AABD4" # Blue (Path)
export COLOR_06="#D6ADD5" # Magenta (Syntax var)
export COLOR_07="#79D4D5" # Cyan (Prompt)
export COLOR_08="#D4D4D4" # White
export COLOR_09="#646464" # Bright Black
export COLOR_10="#F58E8E" # Bright Red (Command error)
export COLOR_11="#A9D3AB" # Bright Green (Exec)
export COLOR_12="#FED37E" # Bright Yellow
export COLOR_13="#7AABD4" # Bright Blue (Folder)
export COLOR_14="#D6ADD5" # Bright Magenta
export COLOR_15="#79D4D5" # Bright Cyan
export COLOR_16="#D4D4D4" # Bright White
export BACKGROUND_COLOR="#2D2D2D" # Background
export FOREGROUND_COLOR="#D4D4D4" # Foreground (Text)
export CURSOR_COLOR="#D4D4D4" # Cursor
# | ===========================================================================
# | Apply Colors
# | ===========================================================================
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

49
installs/chalkboard.sh Executable file
View File

@ -0,0 +1,49 @@
#!/usr/bin/env bash
export PROFILE_NAME="Chalkboard"
export COLOR_01="#000000" # Black (Host)
export COLOR_02="#C37372" # Red (Syntax string)
export COLOR_03="#72C373" # Green (Command)
export COLOR_04="#C2C372" # Yellow (Command second)
export COLOR_05="#7372C3" # Blue (Path)
export COLOR_06="#C372C2" # Magenta (Syntax var)
export COLOR_07="#72C2C3" # Cyan (Prompt)
export COLOR_08="#D9D9D9" # White
export COLOR_09="#323232" # Bright Black
export COLOR_10="#DBAAAA" # Bright Red (Command error)
export COLOR_11="#AADBAA" # Bright Green (Exec)
export COLOR_12="#DADBAA" # Bright Yellow
export COLOR_13="#AAAADB" # Bright Blue (Folder)
export COLOR_14="#DBAADA" # Bright Magenta
export COLOR_15="#AADADB" # Bright Cyan
export COLOR_16="#FFFFFF" # Bright White
export BACKGROUND_COLOR="#29262F" # Background
export FOREGROUND_COLOR="#D9E6F2" # Foreground (Text)
export CURSOR_COLOR="#D9E6F2" # Cursor
# | ===========================================================================
# | Apply Colors
# | ===========================================================================
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

49
installs/chameleon.sh Executable file
View File

@ -0,0 +1,49 @@
#!/usr/bin/env bash
export PROFILE_NAME="Chameleon"
export COLOR_01="#2C2C2C" # Black (Host)
export COLOR_02="#CC231C" # Red (Syntax string)
export COLOR_03="#689D69" # Green (Command)
export COLOR_04="#D79922" # Yellow (Command second)
export COLOR_05="#366B71" # Blue (Path)
export COLOR_06="#4E5165" # Magenta (Syntax var)
export COLOR_07="#458587" # Cyan (Prompt)
export COLOR_08="#C8BB97" # White
export COLOR_09="#777777" # Bright Black
export COLOR_10="#CC231C" # Bright Red (Command error)
export COLOR_11="#689D69" # Bright Green (Exec)
export COLOR_12="#D79922" # Bright Yellow
export COLOR_13="#366B71" # Bright Blue (Folder)
export COLOR_14="#4E5165" # Bright Magenta
export COLOR_15="#458587" # Bright Cyan
export COLOR_16="#C8BB97" # Bright White
export BACKGROUND_COLOR="#2C2C2C" # Background
export FOREGROUND_COLOR="#DEDEDE" # Foreground (Text)
export CURSOR_COLOR="#DEDEDE" # Cursor
# | ===========================================================================
# | Apply Colors
# | ===========================================================================
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

49
installs/ciapre.sh Executable file
View File

@ -0,0 +1,49 @@
#!/usr/bin/env bash
export PROFILE_NAME="Ciapre"
export COLOR_01="#181818" # Black (Host)
export COLOR_02="#810009" # Red (Syntax string)
export COLOR_03="#48513B" # Green (Command)
export COLOR_04="#CC8B3F" # Yellow (Command second)
export COLOR_05="#576D8C" # Blue (Path)
export COLOR_06="#724D7C" # Magenta (Syntax var)
export COLOR_07="#5C4F4B" # Cyan (Prompt)
export COLOR_08="#AEA47F" # White
export COLOR_09="#555555" # Bright Black
export COLOR_10="#AC3835" # Bright Red (Command error)
export COLOR_11="#A6A75D" # Bright Green (Exec)
export COLOR_12="#DCDF7C" # Bright Yellow
export COLOR_13="#3097C6" # Bright Blue (Folder)
export COLOR_14="#D33061" # Bright Magenta
export COLOR_15="#F3DBB2" # Bright Cyan
export COLOR_16="#F4F4F4" # Bright White
export BACKGROUND_COLOR="#191C27" # Background
export FOREGROUND_COLOR="#AEA47A" # Foreground (Text)
export CURSOR_COLOR="#AEA47A" # Cursor
# | ===========================================================================
# | Apply Colors
# | ===========================================================================
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

49
installs/clone-of-ubuntu.sh Executable file
View File

@ -0,0 +1,49 @@
#!/usr/bin/env bash
export PROFILE_NAME="Clone Of Ubuntu"
export COLOR_01="#2E3436" # Black (Host)
export COLOR_02="#CC0000" # Red (Syntax string)
export COLOR_03="#4E9A06" # Green (Command)
export COLOR_04="#C4A000" # Yellow (Command second)
export COLOR_05="#3465A4" # Blue (Path)
export COLOR_06="#75507B" # Magenta (Syntax var)
export COLOR_07="#06989A" # Cyan (Prompt)
export COLOR_08="#D3D7CF" # White
export COLOR_09="#555753" # Bright Black
export COLOR_10="#EF2929" # Bright Red (Command error)
export COLOR_11="#8AE234" # Bright Green (Exec)
export COLOR_12="#FCE94F" # Bright Yellow
export COLOR_13="#729FCF" # Bright Blue (Folder)
export COLOR_14="#AD7FA8" # Bright Magenta
export COLOR_15="#34E2E2" # Bright Cyan
export COLOR_16="#EEEEEC" # Bright White
export BACKGROUND_COLOR="#300A24" # Background
export FOREGROUND_COLOR="#FFFFFF" # Foreground (Text)
export CURSOR_COLOR="#FFFFFF" # Cursor
# | ===========================================================================
# | Apply Colors
# | ===========================================================================
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

49
installs/clrs.sh Executable file
View File

@ -0,0 +1,49 @@
#!/usr/bin/env bash
export PROFILE_NAME="Clrs"
export COLOR_01="#000000" # Black (Host)
export COLOR_02="#F8282A" # Red (Syntax string)
export COLOR_03="#328A5D" # Green (Command)
export COLOR_04="#FA701D" # Yellow (Command second)
export COLOR_05="#135CD0" # Blue (Path)
export COLOR_06="#9F00BD" # Magenta (Syntax var)
export COLOR_07="#33C3C1" # Cyan (Prompt)
export COLOR_08="#B3B3B3" # White
export COLOR_09="#555753" # Bright Black
export COLOR_10="#FB0416" # Bright Red (Command error)
export COLOR_11="#2CC631" # Bright Green (Exec)
export COLOR_12="#FDD727" # Bright Yellow
export COLOR_13="#1670FF" # Bright Blue (Folder)
export COLOR_14="#E900B0" # Bright Magenta
export COLOR_15="#3AD5CE" # Bright Cyan
export COLOR_16="#EEEEEC" # Bright White
export BACKGROUND_COLOR="#FFFFFF" # Background
export FOREGROUND_COLOR="#262626" # Foreground (Text)
export CURSOR_COLOR="#262626" # Cursor
# | ===========================================================================
# | Apply Colors
# | ===========================================================================
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

49
installs/cobalt-2.sh Executable file
View File

@ -0,0 +1,49 @@
#!/usr/bin/env bash
export PROFILE_NAME="Cobalt 2"
export COLOR_01="#000000" # Black (Host)
export COLOR_02="#FF0000" # Red (Syntax string)
export COLOR_03="#38DE21" # Green (Command)
export COLOR_04="#FFE50A" # Yellow (Command second)
export COLOR_05="#1460D2" # Blue (Path)
export COLOR_06="#FF005D" # Magenta (Syntax var)
export COLOR_07="#00BBBB" # Cyan (Prompt)
export COLOR_08="#BBBBBB" # White
export COLOR_09="#555555" # Bright Black
export COLOR_10="#F40E17" # Bright Red (Command error)
export COLOR_11="#3BD01D" # Bright Green (Exec)
export COLOR_12="#EDC809" # Bright Yellow
export COLOR_13="#5555FF" # Bright Blue (Folder)
export COLOR_14="#FF55FF" # Bright Magenta
export COLOR_15="#6AE3FA" # Bright Cyan
export COLOR_16="#FFFFFF" # Bright White
export BACKGROUND_COLOR="#132738" # Background
export FOREGROUND_COLOR="#FFFFFF" # Foreground (Text)
export CURSOR_COLOR="#FFFFFF" # Cursor
# | ===========================================================================
# | Apply Colors
# | ===========================================================================
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

49
installs/cobalt-neon.sh Executable file
View File

@ -0,0 +1,49 @@
#!/usr/bin/env bash
export PROFILE_NAME="Cobalt Neon"
export COLOR_01="#142631" # Black (Host)
export COLOR_02="#FF2320" # Red (Syntax string)
export COLOR_03="#3BA5FF" # Green (Command)
export COLOR_04="#E9E75C" # Yellow (Command second)
export COLOR_05="#8FF586" # Blue (Path)
export COLOR_06="#781AA0" # Magenta (Syntax var)
export COLOR_07="#8FF586" # Cyan (Prompt)
export COLOR_08="#BA46B2" # White
export COLOR_09="#FFF688" # Bright Black
export COLOR_10="#D4312E" # Bright Red (Command error)
export COLOR_11="#8FF586" # Bright Green (Exec)
export COLOR_12="#E9F06D" # Bright Yellow
export COLOR_13="#3C7DD2" # Bright Blue (Folder)
export COLOR_14="#8230A7" # Bright Magenta
export COLOR_15="#6CBC67" # Bright Cyan
export COLOR_16="#8FF586" # Bright White
export BACKGROUND_COLOR="#142838" # Background
export FOREGROUND_COLOR="#8FF586" # Foreground (Text)
export CURSOR_COLOR="#8FF586" # Cursor
# | ===========================================================================
# | Apply Colors
# | ===========================================================================
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

49
installs/colorcli.sh Executable file
View File

@ -0,0 +1,49 @@
#!/usr/bin/env bash
export PROFILE_NAME="Colorcli"
export COLOR_01="#000000" # Black (Host)
export COLOR_02="#D70000" # Red (Syntax string)
export COLOR_03="#5FAF00" # Green (Command)
export COLOR_04="#5FAF00" # Yellow (Command second)
export COLOR_05="#005F87" # Blue (Path)
export COLOR_06="#D70000" # Magenta (Syntax var)
export COLOR_07="#5F5F5F" # Cyan (Prompt)
export COLOR_08="#E4E4E4" # White
export COLOR_09="#5F5F5F" # Bright Black
export COLOR_10="#D70000" # Bright Red (Command error)
export COLOR_11="#5F5F5F" # Bright Green (Exec)
export COLOR_12="#FFFF00" # Bright Yellow
export COLOR_13="#0087AF" # Bright Blue (Folder)
export COLOR_14="#0087AF" # Bright Magenta
export COLOR_15="#0087AF" # Bright Cyan
export COLOR_16="#FFFFFF" # Bright White
export BACKGROUND_COLOR="#FFFFFF" # Background
export FOREGROUND_COLOR="#005F87" # Foreground (Text)
export CURSOR_COLOR="#005F87" # Cursor
# | ===========================================================================
# | Apply Colors
# | ===========================================================================
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

49
installs/crayon-pony-fish.sh Executable file
View File

@ -0,0 +1,49 @@
#!/usr/bin/env bash
export PROFILE_NAME="Crayon Pony Fish"
export COLOR_01="#2B1B1D" # Black (Host)
export COLOR_02="#91002B" # Red (Syntax string)
export COLOR_03="#579524" # Green (Command)
export COLOR_04="#AB311B" # Yellow (Command second)
export COLOR_05="#8C87B0" # Blue (Path)
export COLOR_06="#692F50" # Magenta (Syntax var)
export COLOR_07="#E8A866" # Cyan (Prompt)
export COLOR_08="#68525A" # White
export COLOR_09="#3D2B2E" # Bright Black
export COLOR_10="#C5255D" # Bright Red (Command error)
export COLOR_11="#8DFF57" # Bright Green (Exec)
export COLOR_12="#C8381D" # Bright Yellow
export COLOR_13="#CFC9FF" # Bright Blue (Folder)
export COLOR_14="#FC6CBA" # Bright Magenta
export COLOR_15="#FFCEAF" # Bright Cyan
export COLOR_16="#B0949D" # Bright White
export BACKGROUND_COLOR="#150707" # Background
export FOREGROUND_COLOR="#68525A" # Foreground (Text)
export CURSOR_COLOR="#68525A" # Cursor
# | ===========================================================================
# | Apply Colors
# | ===========================================================================
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

49
installs/dark-pastel.sh Executable file
View File

@ -0,0 +1,49 @@
#!/usr/bin/env bash
export PROFILE_NAME="Dark Pastel"
export COLOR_01="#000000" # Black (Host)
export COLOR_02="#FF5555" # Red (Syntax string)
export COLOR_03="#55FF55" # Green (Command)
export COLOR_04="#FFFF55" # Yellow (Command second)
export COLOR_05="#5555FF" # Blue (Path)
export COLOR_06="#FF55FF" # Magenta (Syntax var)
export COLOR_07="#55FFFF" # Cyan (Prompt)
export COLOR_08="#BBBBBB" # White
export COLOR_09="#555555" # Bright Black
export COLOR_10="#FF5555" # Bright Red (Command error)
export COLOR_11="#55FF55" # Bright Green (Exec)
export COLOR_12="#FFFF55" # Bright Yellow
export COLOR_13="#5555FF" # Bright Blue (Folder)
export COLOR_14="#FF55FF" # Bright Magenta
export COLOR_15="#55FFFF" # Bright Cyan
export COLOR_16="#FFFFFF" # Bright White
export BACKGROUND_COLOR="#000000" # Background
export FOREGROUND_COLOR="#FFFFFF" # Foreground (Text)
export CURSOR_COLOR="#FFFFFF" # Cursor
# | ===========================================================================
# | Apply Colors
# | ===========================================================================
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

49
installs/darkside.sh Executable file
View File

@ -0,0 +1,49 @@
#!/usr/bin/env bash
export PROFILE_NAME="Darkside"
export COLOR_01="#000000" # Black (Host)
export COLOR_02="#E8341C" # Red (Syntax string)
export COLOR_03="#68C256" # Green (Command)
export COLOR_04="#F2D42C" # Yellow (Command second)
export COLOR_05="#1C98E8" # Blue (Path)
export COLOR_06="#8E69C9" # Magenta (Syntax var)
export COLOR_07="#1C98E8" # Cyan (Prompt)
export COLOR_08="#BABABA" # White
export COLOR_09="#000000" # Bright Black
export COLOR_10="#E05A4F" # Bright Red (Command error)
export COLOR_11="#77B869" # Bright Green (Exec)
export COLOR_12="#EFD64B" # Bright Yellow
export COLOR_13="#387CD3" # Bright Blue (Folder)
export COLOR_14="#957BBE" # Bright Magenta
export COLOR_15="#3D97E2" # Bright Cyan
export COLOR_16="#BABABA" # Bright White
export BACKGROUND_COLOR="#222324" # Background
export FOREGROUND_COLOR="#BABABA" # Foreground (Text)
export CURSOR_COLOR="#BABABA" # Cursor
# | ===========================================================================
# | Apply Colors
# | ===========================================================================
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

49
installs/dehydration.sh Executable file
View File

@ -0,0 +1,49 @@
#!/usr/bin/env bash
export PROFILE_NAME="Dehydration"
export COLOR_01="#333333" # Black (Host)
export COLOR_02="#FF5555" # Red (Syntax string)
export COLOR_03="#5FD38D" # Green (Command)
export COLOR_04="#FF9955" # Yellow (Command second)
export COLOR_05="#3771C8" # Blue (Path)
export COLOR_06="#BC5FD3" # Magenta (Syntax var)
export COLOR_07="#5FD3BC" # Cyan (Prompt)
export COLOR_08="#999999" # White
export COLOR_09="#666666" # Bright Black
export COLOR_10="#FF8080" # Bright Red (Command error)
export COLOR_11="#87DEAA" # Bright Green (Exec)
export COLOR_12="#FFB380" # Bright Yellow
export COLOR_13="#5F8DD3" # Bright Blue (Folder)
export COLOR_14="#CD87DE" # Bright Magenta
export COLOR_15="#87DECD" # Bright Cyan
export COLOR_16="#CCCCCC" # Bright White
export BACKGROUND_COLOR="#333333" # Background
export FOREGROUND_COLOR="#CCCCCC" # Foreground (Text)
export CURSOR_COLOR="#CCCCCC" # Cursor
# | ===========================================================================
# | Apply Colors
# | ===========================================================================
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

49
installs/desert.sh Executable file
View File

@ -0,0 +1,49 @@
#!/usr/bin/env bash
export PROFILE_NAME="Desert"
export COLOR_01="#4D4D4D" # Black (Host)
export COLOR_02="#FF2B2B" # Red (Syntax string)
export COLOR_03="#98FB98" # Green (Command)
export COLOR_04="#F0E68C" # Yellow (Command second)
export COLOR_05="#CD853F" # Blue (Path)
export COLOR_06="#FFDEAD" # Magenta (Syntax var)
export COLOR_07="#FFA0A0" # Cyan (Prompt)
export COLOR_08="#F5DEB3" # White
export COLOR_09="#555555" # Bright Black
export COLOR_10="#FF5555" # Bright Red (Command error)
export COLOR_11="#55FF55" # Bright Green (Exec)
export COLOR_12="#FFFF55" # Bright Yellow
export COLOR_13="#87CEFF" # Bright Blue (Folder)
export COLOR_14="#FF55FF" # Bright Magenta
export COLOR_15="#FFD700" # Bright Cyan
export COLOR_16="#FFFFFF" # Bright White
export BACKGROUND_COLOR="#333333" # Background
export FOREGROUND_COLOR="#FFFFFF" # Foreground (Text)
export CURSOR_COLOR="#FFFFFF" # Cursor
# | ===========================================================================
# | Apply Colors
# | ===========================================================================
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

49
installs/dimmed-monokai.sh Executable file
View File

@ -0,0 +1,49 @@
#!/usr/bin/env bash
export PROFILE_NAME="Dimmed Monokai"
export COLOR_01="#3A3D43" # Black (Host)
export COLOR_02="#BE3F48" # Red (Syntax string)
export COLOR_03="#879A3B" # Green (Command)
export COLOR_04="#C5A635" # Yellow (Command second)
export COLOR_05="#4F76A1" # Blue (Path)
export COLOR_06="#855C8D" # Magenta (Syntax var)
export COLOR_07="#578FA4" # Cyan (Prompt)
export COLOR_08="#B9BCBA" # White
export COLOR_09="#888987" # Bright Black
export COLOR_10="#FB001F" # Bright Red (Command error)
export COLOR_11="#0F722F" # Bright Green (Exec)
export COLOR_12="#C47033" # Bright Yellow
export COLOR_13="#186DE3" # Bright Blue (Folder)
export COLOR_14="#FB0067" # Bright Magenta
export COLOR_15="#2E706D" # Bright Cyan
export COLOR_16="#FDFFB9" # Bright White
export BACKGROUND_COLOR="#1F1F1F" # Background
export FOREGROUND_COLOR="#B9BCBA" # Foreground (Text)
export CURSOR_COLOR="#B9BCBA" # Cursor
# | ===========================================================================
# | Apply Colors
# | ===========================================================================
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

49
installs/dissonance.sh Executable file
View File

@ -0,0 +1,49 @@
#!/usr/bin/env bash
export PROFILE_NAME="Dissonance"
export COLOR_01="#000000" # Black (Host)
export COLOR_02="#DC322F" # Red (Syntax string)
export COLOR_03="#56DB3A" # Green (Command)
export COLOR_04="#FF8400" # Yellow (Command second)
export COLOR_05="#0084D4" # Blue (Path)
export COLOR_06="#B729D9" # Magenta (Syntax var)
export COLOR_07="#CCCCFF" # Cyan (Prompt)
export COLOR_08="#FFFFFF" # White
export COLOR_09="#D6DBE5" # Bright Black
export COLOR_10="#DC322F" # Bright Red (Command error)
export COLOR_11="#56DB3A" # Bright Green (Exec)
export COLOR_12="#FF8400" # Bright Yellow
export COLOR_13="#0084D4" # Bright Blue (Folder)
export COLOR_14="#B729D9" # Bright Magenta
export COLOR_15="#CCCCFF" # Bright Cyan
export COLOR_16="#FFFFFF" # Bright White
export BACKGROUND_COLOR="#000000" # Background
export FOREGROUND_COLOR="#FFFFFF" # Foreground (Text)
export CURSOR_COLOR="#DC322F" # Cursor
# | ===========================================================================
# | Apply Colors
# | ===========================================================================
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

49
installs/dracula.sh Executable file
View File

@ -0,0 +1,49 @@
#!/usr/bin/env bash
export PROFILE_NAME="Dracula"
export COLOR_01="#44475A" # Black (Host)
export COLOR_02="#FF5555" # Red (Syntax string)
export COLOR_03="#50FA7B" # Green (Command)
export COLOR_04="#FFB86C" # Yellow (Command second)
export COLOR_05="#8BE9FD" # Blue (Path)
export COLOR_06="#BD93F9" # Magenta (Syntax var)
export COLOR_07="#FF79C6" # Cyan (Prompt)
export COLOR_08="#94A3A5" # White
export COLOR_09="#000000" # Bright Black
export COLOR_10="#FF5555" # Bright Red (Command error)
export COLOR_11="#50FA7B" # Bright Green (Exec)
export COLOR_12="#FFB86C" # Bright Yellow
export COLOR_13="#8BE9FD" # Bright Blue (Folder)
export COLOR_14="#BD93F9" # Bright Magenta
export COLOR_15="#FF79C6" # Bright Cyan
export COLOR_16="#FFFFFF" # Bright White
export BACKGROUND_COLOR="#282A36" # Background
export FOREGROUND_COLOR="#94A3A5" # Foreground (Text)
export CURSOR_COLOR="#94A3A5" # Cursor
# | ===========================================================================
# | Apply Colors
# | ===========================================================================
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

49
installs/earthsong.sh Executable file
View File

@ -0,0 +1,49 @@
#!/usr/bin/env bash
export PROFILE_NAME="Earthsong"
export COLOR_01="#121418" # Black (Host)
export COLOR_02="#C94234" # Red (Syntax string)
export COLOR_03="#85C54C" # Green (Command)
export COLOR_04="#F5AE2E" # Yellow (Command second)
export COLOR_05="#1398B9" # Blue (Path)
export COLOR_06="#D0633D" # Magenta (Syntax var)
export COLOR_07="#509552" # Cyan (Prompt)
export COLOR_08="#E5C6AA" # White
export COLOR_09="#675F54" # Bright Black
export COLOR_10="#FF645A" # Bright Red (Command error)
export COLOR_11="#98E036" # Bright Green (Exec)
export COLOR_12="#E0D561" # Bright Yellow
export COLOR_13="#5FDAFF" # Bright Blue (Folder)
export COLOR_14="#FF9269" # Bright Magenta
export COLOR_15="#84F088" # Bright Cyan
export COLOR_16="#F6F7EC" # Bright White
export BACKGROUND_COLOR="#292520" # Background
export FOREGROUND_COLOR="#E5C7A9" # Foreground (Text)
export CURSOR_COLOR="#E5C7A9" # Cursor
# | ===========================================================================
# | Apply Colors
# | ===========================================================================
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

49
installs/elemental.sh Executable file
View File

@ -0,0 +1,49 @@
#!/usr/bin/env bash
export PROFILE_NAME="Elemental"
export COLOR_01="#3C3C30" # Black (Host)
export COLOR_02="#98290F" # Red (Syntax string)
export COLOR_03="#479A43" # Green (Command)
export COLOR_04="#7F7111" # Yellow (Command second)
export COLOR_05="#497F7D" # Blue (Path)
export COLOR_06="#7F4E2F" # Magenta (Syntax var)
export COLOR_07="#387F58" # Cyan (Prompt)
export COLOR_08="#807974" # White
export COLOR_09="#555445" # Bright Black
export COLOR_10="#E0502A" # Bright Red (Command error)
export COLOR_11="#61E070" # Bright Green (Exec)
export COLOR_12="#D69927" # Bright Yellow
export COLOR_13="#79D9D9" # Bright Blue (Folder)
export COLOR_14="#CD7C54" # Bright Magenta
export COLOR_15="#59D599" # Bright Cyan
export COLOR_16="#FFF1E9" # Bright White
export BACKGROUND_COLOR="#22211D" # Background
export FOREGROUND_COLOR="#807A74" # Foreground (Text)
export CURSOR_COLOR="#807A74" # Cursor
# | ===========================================================================
# | Apply Colors
# | ===========================================================================
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

49
installs/elementary.sh Executable file
View File

@ -0,0 +1,49 @@
#!/usr/bin/env bash
export PROFILE_NAME="Elementary"
export COLOR_01="#303030" # Black (Host)
export COLOR_02="#E1321A" # Red (Syntax string)
export COLOR_03="#6AB017" # Green (Command)
export COLOR_04="#FFC005" # Yellow (Command second)
export COLOR_05="#004F9E" # Blue (Path)
export COLOR_06="#EC0048" # Magenta (Syntax var)
export COLOR_07="#2AA7E7" # Cyan (Prompt)
export COLOR_08="#F2F2F2" # White
export COLOR_09="#5D5D5D" # Bright Black
export COLOR_10="#FF361E" # Bright Red (Command error)
export COLOR_11="#7BC91F" # Bright Green (Exec)
export COLOR_12="#FFD00A" # Bright Yellow
export COLOR_13="#0071FF" # Bright Blue (Folder)
export COLOR_14="#FF1D62" # Bright Magenta
export COLOR_15="#4BB8FD" # Bright Cyan
export COLOR_16="#A020F0" # Bright White
export BACKGROUND_COLOR="#101010" # Background
export FOREGROUND_COLOR="#F2F2F2" # Foreground (Text)
export CURSOR_COLOR="#F2F2F2" # Cursor
# | ===========================================================================
# | Apply Colors
# | ===========================================================================
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

49
installs/elic.sh Executable file
View File

@ -0,0 +1,49 @@
#!/usr/bin/env bash
export PROFILE_NAME="Elic"
export COLOR_01="#303030" # Black (Host)
export COLOR_02="#E1321A" # Red (Syntax string)
export COLOR_03="#6AB017" # Green (Command)
export COLOR_04="#FFC005" # Yellow (Command second)
export COLOR_05="#729FCF" # Blue (Path)
export COLOR_06="#EC0048" # Magenta (Syntax var)
export COLOR_07="#F2F2F2" # Cyan (Prompt)
export COLOR_08="#2AA7E7" # White
export COLOR_09="#5D5D5D" # Bright Black
export COLOR_10="#FF361E" # Bright Red (Command error)
export COLOR_11="#7BC91F" # Bright Green (Exec)
export COLOR_12="#FFD00A" # Bright Yellow
export COLOR_13="#0071FF" # Bright Blue (Folder)
export COLOR_14="#FF1D62" # Bright Magenta
export COLOR_15="#4BB8FD" # Bright Cyan
export COLOR_16="#A020F0" # Bright White
export BACKGROUND_COLOR="#4A453E" # Background
export FOREGROUND_COLOR="#F2F2F2" # Foreground (Text)
export CURSOR_COLOR="#F2F2F2" # Cursor
# | ===========================================================================
# | Apply Colors
# | ===========================================================================
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

49
installs/elio.sh Executable file
View File

@ -0,0 +1,49 @@
#!/usr/bin/env bash
export PROFILE_NAME="Elio"
export COLOR_01="#303030" # Black (Host)
export COLOR_02="#E1321A" # Red (Syntax string)
export COLOR_03="#6AB017" # Green (Command)
export COLOR_04="#FFC005" # Yellow (Command second)
export COLOR_05="#729FCF" # Blue (Path)
export COLOR_06="#EC0048" # Magenta (Syntax var)
export COLOR_07="#2AA7E7" # Cyan (Prompt)
export COLOR_08="#F2F2F2" # White
export COLOR_09="#5D5D5D" # Bright Black
export COLOR_10="#FF361E" # Bright Red (Command error)
export COLOR_11="#7BC91F" # Bright Green (Exec)
export COLOR_12="#FFD00A" # Bright Yellow
export COLOR_13="#0071FF" # Bright Blue (Folder)
export COLOR_14="#FF1D62" # Bright Magenta
export COLOR_15="#4BB8FD" # Bright Cyan
export COLOR_16="#A020F0" # Bright White
export BACKGROUND_COLOR="#041A3B" # Background
export FOREGROUND_COLOR="#F2F2F2" # Foreground (Text)
export CURSOR_COLOR="#F2F2F2" # Cursor
# | ===========================================================================
# | Apply Colors
# | ===========================================================================
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

49
installs/espresso-libre.sh Executable file
View File

@ -0,0 +1,49 @@
#!/usr/bin/env bash
export PROFILE_NAME="Espresso Libre"
export COLOR_01="#000000" # Black (Host)
export COLOR_02="#CC0000" # Red (Syntax string)
export COLOR_03="#1A921C" # Green (Command)
export COLOR_04="#F0E53A" # Yellow (Command second)
export COLOR_05="#0066FF" # Blue (Path)
export COLOR_06="#C5656B" # Magenta (Syntax var)
export COLOR_07="#06989A" # Cyan (Prompt)
export COLOR_08="#D3D7CF" # White
export COLOR_09="#555753" # Bright Black
export COLOR_10="#EF2929" # Bright Red (Command error)
export COLOR_11="#9AFF87" # Bright Green (Exec)
export COLOR_12="#FFFB5C" # Bright Yellow
export COLOR_13="#43A8ED" # Bright Blue (Folder)
export COLOR_14="#FF818A" # Bright Magenta
export COLOR_15="#34E2E2" # Bright Cyan
export COLOR_16="#EEEEEC" # Bright White
export BACKGROUND_COLOR="#2A211C" # Background
export FOREGROUND_COLOR="#B8A898" # Foreground (Text)
export CURSOR_COLOR="#B8A898" # Cursor
# | ===========================================================================
# | Apply Colors
# | ===========================================================================
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

49
installs/espresso.sh Executable file
View File

@ -0,0 +1,49 @@
#!/usr/bin/env bash
export PROFILE_NAME="Espresso"
export COLOR_01="#353535" # Black (Host)
export COLOR_02="#D25252" # Red (Syntax string)
export COLOR_03="#A5C261" # Green (Command)
export COLOR_04="#FFC66D" # Yellow (Command second)
export COLOR_05="#6C99BB" # Blue (Path)
export COLOR_06="#D197D9" # Magenta (Syntax var)
export COLOR_07="#BED6FF" # Cyan (Prompt)
export COLOR_08="#EEEEEC" # White
export COLOR_09="#535353" # Bright Black
export COLOR_10="#F00C0C" # Bright Red (Command error)
export COLOR_11="#C2E075" # Bright Green (Exec)
export COLOR_12="#E1E48B" # Bright Yellow
export COLOR_13="#8AB7D9" # Bright Blue (Folder)
export COLOR_14="#EFB5F7" # Bright Magenta
export COLOR_15="#DCF4FF" # Bright Cyan
export COLOR_16="#FFFFFF" # Bright White
export BACKGROUND_COLOR="#323232" # Background
export FOREGROUND_COLOR="#FFFFFF" # Foreground (Text)
export CURSOR_COLOR="#FFFFFF" # Cursor
# | ===========================================================================
# | Apply Colors
# | ===========================================================================
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

49
installs/everblush.sh Executable file
View File

@ -0,0 +1,49 @@
#!/usr/bin/env bash
export PROFILE_NAME="Everblush"
export COLOR_01="#232A2D" # Black (Host)
export COLOR_02="#E57474" # Red (Syntax string)
export COLOR_03="#8CCF7E" # Green (Command)
export COLOR_04="#E5C76B" # Yellow (Command second)
export COLOR_05="#67B0E8" # Blue (Path)
export COLOR_06="#C47FD5" # Magenta (Syntax var)
export COLOR_07="#6CBFBF" # Cyan (Prompt)
export COLOR_08="#B3B9B8" # White
export COLOR_09="#2D3437" # Bright Black
export COLOR_10="#EF7E7E" # Bright Red (Command error)
export COLOR_11="#96D988" # Bright Green (Exec)
export COLOR_12="#F4D67A" # Bright Yellow
export COLOR_13="#71BAF2" # Bright Blue (Folder)
export COLOR_14="#CE89DF" # Bright Magenta
export COLOR_15="#67CBE7" # Bright Cyan
export COLOR_16="#BDC3C2" # Bright White
export BACKGROUND_COLOR="#141B1E" # Background
export FOREGROUND_COLOR="#DADADA" # Foreground (Text)
export CURSOR_COLOR="#DADADA" # Cursor
# | ===========================================================================
# | Apply Colors
# | ===========================================================================
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

49
installs/everforest-dark.sh Executable file
View File

@ -0,0 +1,49 @@
#!/usr/bin/env bash
export PROFILE_NAME="Everforest Dark"
export COLOR_01="#4B565C" # Black (Host)
export COLOR_02="#E67E80" # Red (Syntax string)
export COLOR_03="#A7C080" # Green (Command)
export COLOR_04="#DBBC7F" # Yellow (Command second)
export COLOR_05="#7FBBB3" # Blue (Path)
export COLOR_06="#D699B6" # Magenta (Syntax var)
export COLOR_07="#83C092" # Cyan (Prompt)
export COLOR_08="#D3C6AA" # White
export COLOR_09="#5C6A72" # Bright Black
export COLOR_10="#F85552" # Bright Red (Command error)
export COLOR_11="#8DA101" # Bright Green (Exec)
export COLOR_12="#DFA000" # Bright Yellow
export COLOR_13="#3A94C5" # Bright Blue (Folder)
export COLOR_14="#DF69BA" # Bright Magenta
export COLOR_15="#35A77C" # Bright Cyan
export COLOR_16="#DFDDC8" # Bright White
export BACKGROUND_COLOR="#2F383E" # Background
export FOREGROUND_COLOR="#D3C6AA" # Foreground (Text)
export CURSOR_COLOR="#D3C6AA" # Cursor
# | ===========================================================================
# | Apply Colors
# | ===========================================================================
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

49
installs/everforest-light.sh Executable file
View File

@ -0,0 +1,49 @@
#!/usr/bin/env bash
export PROFILE_NAME="Everforest Light"
export COLOR_01="#5C6A72" # Black (Host)
export COLOR_02="#F85552" # Red (Syntax string)
export COLOR_03="#8DA101" # Green (Command)
export COLOR_04="#DFA000" # Yellow (Command second)
export COLOR_05="#3A94C5" # Blue (Path)
export COLOR_06="#DF69BA" # Magenta (Syntax var)
export COLOR_07="#35A77C" # Cyan (Prompt)
export COLOR_08="#DFDDC8" # White
export COLOR_09="#4B565C" # Bright Black
export COLOR_10="#E67E80" # Bright Red (Command error)
export COLOR_11="#A7C080" # Bright Green (Exec)
export COLOR_12="#DBBC7F" # Bright Yellow
export COLOR_13="#7FBBB3" # Bright Blue (Folder)
export COLOR_14="#D699B6" # Bright Magenta
export COLOR_15="#83C092" # Bright Cyan
export COLOR_16="#D3C6AA" # Bright White
export BACKGROUND_COLOR="#FDF6E3" # Background
export FOREGROUND_COLOR="#5C6A72" # Foreground (Text)
export CURSOR_COLOR="#5C6A72" # Cursor
# | ===========================================================================
# | Apply Colors
# | ===========================================================================
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

49
installs/fairy-floss-dark.sh Executable file
View File

@ -0,0 +1,49 @@
#!/usr/bin/env bash
export PROFILE_NAME="Fairy Floss Dark"
export COLOR_01="#42395D" # Black (Host)
export COLOR_02="#A8757B" # Red (Syntax string)
export COLOR_03="#FF857F" # Green (Command)
export COLOR_04="#E6C000" # Yellow (Command second)
export COLOR_05="#AE81FF" # Blue (Path)
export COLOR_06="#716799" # Magenta (Syntax var)
export COLOR_07="#C2FFDF" # Cyan (Prompt)
export COLOR_08="#F8F8F2" # White
export COLOR_09="#75507B" # Bright Black
export COLOR_10="#FFB8D1" # Bright Red (Command error)
export COLOR_11="#F1568E" # Bright Green (Exec)
export COLOR_12="#D5A425" # Bright Yellow
export COLOR_13="#C5A3FF" # Bright Blue (Folder)
export COLOR_14="#8077A8" # Bright Magenta
export COLOR_15="#C2FFFF" # Bright Cyan
export COLOR_16="#F8F8F0" # Bright White
export BACKGROUND_COLOR="#42395D" # Background
export FOREGROUND_COLOR="#C2FFDF" # Foreground (Text)
export CURSOR_COLOR="#FFB8D1" # Cursor
# | ===========================================================================
# | Apply Colors
# | ===========================================================================
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

49
installs/fairy-floss.sh Executable file
View File

@ -0,0 +1,49 @@
#!/usr/bin/env bash
export PROFILE_NAME="Fairy Floss"
export COLOR_01="#42395D" # Black (Host)
export COLOR_02="#A8757B" # Red (Syntax string)
export COLOR_03="#FF857F" # Green (Command)
export COLOR_04="#E6C000" # Yellow (Command second)
export COLOR_05="#AE81FF" # Blue (Path)
export COLOR_06="#716799" # Magenta (Syntax var)
export COLOR_07="#C2FFDF" # Cyan (Prompt)
export COLOR_08="#F8F8F2" # White
export COLOR_09="#75507B" # Bright Black
export COLOR_10="#FFB8D1" # Bright Red (Command error)
export COLOR_11="#F1568E" # Bright Green (Exec)
export COLOR_12="#D5A425" # Bright Yellow
export COLOR_13="#C5A3FF" # Bright Blue (Folder)
export COLOR_14="#8077A8" # Bright Magenta
export COLOR_15="#C2FFFF" # Bright Cyan
export COLOR_16="#F8F8F0" # Bright White
export BACKGROUND_COLOR="#5A5475" # Background
export FOREGROUND_COLOR="#C2FFDF" # Foreground (Text)
export CURSOR_COLOR="#FFB8D1" # Cursor
# | ===========================================================================
# | Apply Colors
# | ===========================================================================
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

49
installs/fishtank.sh Executable file
View File

@ -0,0 +1,49 @@
#!/usr/bin/env bash
export PROFILE_NAME="Fishtank"
export COLOR_01="#03073C" # Black (Host)
export COLOR_02="#C6004A" # Red (Syntax string)
export COLOR_03="#ACF157" # Green (Command)
export COLOR_04="#FECD5E" # Yellow (Command second)
export COLOR_05="#525FB8" # Blue (Path)
export COLOR_06="#986F82" # Magenta (Syntax var)
export COLOR_07="#968763" # Cyan (Prompt)
export COLOR_08="#ECF0FC" # White
export COLOR_09="#6C5B30" # Bright Black
export COLOR_10="#DA4B8A" # Bright Red (Command error)
export COLOR_11="#DBFFA9" # Bright Green (Exec)
export COLOR_12="#FEE6A9" # Bright Yellow
export COLOR_13="#B2BEFA" # Bright Blue (Folder)
export COLOR_14="#FDA5CD" # Bright Magenta
export COLOR_15="#A5BD86" # Bright Cyan
export COLOR_16="#F6FFEC" # Bright White
export BACKGROUND_COLOR="#232537" # Background
export FOREGROUND_COLOR="#ECF0FE" # Foreground (Text)
export CURSOR_COLOR="#ECF0FE" # Cursor
# | ===========================================================================
# | Apply Colors
# | ===========================================================================
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

49
installs/flat-remix.sh Executable file
View File

@ -0,0 +1,49 @@
#!/usr/bin/env bash
export PROFILE_NAME="Flat Remix"
export COLOR_01="#1F2229" # Black (Host)
export COLOR_02="#D41919" # Red (Syntax string)
export COLOR_03="#5EBDAB" # Green (Command)
export COLOR_04="#FEA44C" # Yellow (Command second)
export COLOR_05="#367BF0" # Blue (Path)
export COLOR_06="#BF2E5D" # Magenta (Syntax var)
export COLOR_07="#49AEE6" # Cyan (Prompt)
export COLOR_08="#E6E6E6" # White
export COLOR_09="#8C42AB" # Bright Black
export COLOR_10="#EC0101" # Bright Red (Command error)
export COLOR_11="#47D4B9" # Bright Green (Exec)
export COLOR_12="#FF8A18" # Bright Yellow
export COLOR_13="#277FFF" # Bright Blue (Folder)
export COLOR_14="#D71655" # Bright Magenta
export COLOR_15="#05A1F7" # Bright Cyan
export COLOR_16="#FFFFFF" # Bright White
export BACKGROUND_COLOR="#272A34" # Background
export FOREGROUND_COLOR="#FFFFFF" # Foreground (Text)
export CURSOR_COLOR="#FFFFFF" # Cursor
# | ===========================================================================
# | Apply Colors
# | ===========================================================================
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

49
installs/flat.sh Executable file
View File

@ -0,0 +1,49 @@
#!/usr/bin/env bash
export PROFILE_NAME="Flat"
export COLOR_01="#2C3E50" # Black (Host)
export COLOR_02="#C0392B" # Red (Syntax string)
export COLOR_03="#27AE60" # Green (Command)
export COLOR_04="#F39C12" # Yellow (Command second)
export COLOR_05="#2980B9" # Blue (Path)
export COLOR_06="#8E44AD" # Magenta (Syntax var)
export COLOR_07="#16A085" # Cyan (Prompt)
export COLOR_08="#BDC3C7" # White
export COLOR_09="#34495E" # Bright Black
export COLOR_10="#E74C3C" # Bright Red (Command error)
export COLOR_11="#2ECC71" # Bright Green (Exec)
export COLOR_12="#F1C40F" # Bright Yellow
export COLOR_13="#3498DB" # Bright Blue (Folder)
export COLOR_14="#9B59B6" # Bright Magenta
export COLOR_15="#2AA198" # Bright Cyan
export COLOR_16="#ECF0F1" # Bright White
export BACKGROUND_COLOR="#1F2D3A" # Background
export FOREGROUND_COLOR="#1ABC9C" # Foreground (Text)
export CURSOR_COLOR="#1ABC9C" # Cursor
# | ===========================================================================
# | Apply Colors
# | ===========================================================================
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

49
installs/flatland.sh Executable file
View File

@ -0,0 +1,49 @@
#!/usr/bin/env bash
export PROFILE_NAME="Flatland"
export COLOR_01="#1D1D19" # Black (Host)
export COLOR_02="#F18339" # Red (Syntax string)
export COLOR_03="#9FD364" # Green (Command)
export COLOR_04="#F4EF6D" # Yellow (Command second)
export COLOR_05="#5096BE" # Blue (Path)
export COLOR_06="#695ABC" # Magenta (Syntax var)
export COLOR_07="#D63865" # Cyan (Prompt)
export COLOR_08="#FFFFFF" # White
export COLOR_09="#1D1D19" # Bright Black
export COLOR_10="#D22A24" # Bright Red (Command error)
export COLOR_11="#A7D42C" # Bright Green (Exec)
export COLOR_12="#FF8949" # Bright Yellow
export COLOR_13="#61B9D0" # Bright Blue (Folder)
export COLOR_14="#695ABC" # Bright Magenta
export COLOR_15="#D63865" # Bright Cyan
export COLOR_16="#FFFFFF" # Bright White
export BACKGROUND_COLOR="#1D1F21" # Background
export FOREGROUND_COLOR="#B8DBEF" # Foreground (Text)
export CURSOR_COLOR="#B8DBEF" # Cursor
# | ===========================================================================
# | Apply Colors
# | ===========================================================================
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

49
installs/foxnightly.sh Executable file
View File

@ -0,0 +1,49 @@
#!/usr/bin/env bash
export PROFILE_NAME="Foxnightly"
export COLOR_01="#2A2A2E" # Black (Host)
export COLOR_02="#B98EFF" # Red (Syntax string)
export COLOR_03="#FF7DE9" # Green (Command)
export COLOR_04="#729FCF" # Yellow (Command second)
export COLOR_05="#66A05B" # Blue (Path)
export COLOR_06="#75507B" # Magenta (Syntax var)
export COLOR_07="#ACACAE" # Cyan (Prompt)
export COLOR_08="#FFFFFF" # White
export COLOR_09="#A40000" # Bright Black
export COLOR_10="#BF4040" # Bright Red (Command error)
export COLOR_11="#66A05B" # Bright Green (Exec)
export COLOR_12="#FFB86C" # Bright Yellow
export COLOR_13="#729FCF" # Bright Blue (Folder)
export COLOR_14="#8F5902" # Bright Magenta
export COLOR_15="#C4A000" # Bright Cyan
export COLOR_16="#5C3566" # Bright White
export BACKGROUND_COLOR="#2A2A2E" # Background
export FOREGROUND_COLOR="#D7D7DB" # Foreground (Text)
export CURSOR_COLOR="#D7D7DB" # Cursor
# | ===========================================================================
# | Apply Colors
# | ===========================================================================
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

49
installs/freya.sh Executable file
View File

@ -0,0 +1,49 @@
#!/usr/bin/env bash
export PROFILE_NAME="Freya"
export COLOR_01="#073642" # Black (Host)
export COLOR_02="#DC322F" # Red (Syntax string)
export COLOR_03="#859900" # Green (Command)
export COLOR_04="#B58900" # Yellow (Command second)
export COLOR_05="#268BD2" # Blue (Path)
export COLOR_06="#EC0048" # Magenta (Syntax var)
export COLOR_07="#2AA198" # Cyan (Prompt)
export COLOR_08="#94A3A5" # White
export COLOR_09="#586E75" # Bright Black
export COLOR_10="#CB4B16" # Bright Red (Command error)
export COLOR_11="#859900" # Bright Green (Exec)
export COLOR_12="#B58900" # Bright Yellow
export COLOR_13="#268BD2" # Bright Blue (Folder)
export COLOR_14="#D33682" # Bright Magenta
export COLOR_15="#2AA198" # Bright Cyan
export COLOR_16="#6C71C4" # Bright White
export BACKGROUND_COLOR="#252E32" # Background
export FOREGROUND_COLOR="#94A3A5" # Foreground (Text)
export CURSOR_COLOR="#839496" # Cursor
# | ===========================================================================
# | Apply Colors
# | ===========================================================================
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

49
installs/frontend-delight.sh Executable file
View File

@ -0,0 +1,49 @@
#!/usr/bin/env bash
export PROFILE_NAME="Frontend Delight"
export COLOR_01="#242526" # Black (Host)
export COLOR_02="#F8511B" # Red (Syntax string)
export COLOR_03="#565747" # Green (Command)
export COLOR_04="#FA771D" # Yellow (Command second)
export COLOR_05="#2C70B7" # Blue (Path)
export COLOR_06="#F02E4F" # Magenta (Syntax var)
export COLOR_07="#3CA1A6" # Cyan (Prompt)
export COLOR_08="#ADADAD" # White
export COLOR_09="#5FAC6D" # Bright Black
export COLOR_10="#F74319" # Bright Red (Command error)
export COLOR_11="#74EC4C" # Bright Green (Exec)
export COLOR_12="#FDC325" # Bright Yellow
export COLOR_13="#3393CA" # Bright Blue (Folder)
export COLOR_14="#E75E4F" # Bright Magenta
export COLOR_15="#4FBCE6" # Bright Cyan
export COLOR_16="#8C735B" # Bright White
export BACKGROUND_COLOR="#1B1C1D" # Background
export FOREGROUND_COLOR="#ADADAD" # Foreground (Text)
export CURSOR_COLOR="#ADADAD" # Cursor
# | ===========================================================================
# | Apply Colors
# | ===========================================================================
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

View File

@ -0,0 +1,49 @@
#!/usr/bin/env bash
export PROFILE_NAME="Frontend Fun Forrest"
export COLOR_01="#000000" # Black (Host)
export COLOR_02="#D6262B" # Red (Syntax string)
export COLOR_03="#919C00" # Green (Command)
export COLOR_04="#BE8A13" # Yellow (Command second)
export COLOR_05="#4699A3" # Blue (Path)
export COLOR_06="#8D4331" # Magenta (Syntax var)
export COLOR_07="#DA8213" # Cyan (Prompt)
export COLOR_08="#DDC265" # White
export COLOR_09="#7F6A55" # Bright Black
export COLOR_10="#E55A1C" # Bright Red (Command error)
export COLOR_11="#BFC65A" # Bright Green (Exec)
export COLOR_12="#FFCB1B" # Bright Yellow
export COLOR_13="#7CC9CF" # Bright Blue (Folder)
export COLOR_14="#D26349" # Bright Magenta
export COLOR_15="#E6A96B" # Bright Cyan
export COLOR_16="#FFEAA3" # Bright White
export BACKGROUND_COLOR="#251200" # Background
export FOREGROUND_COLOR="#DEC165" # Foreground (Text)
export CURSOR_COLOR="#DEC165" # Cursor
# | ===========================================================================
# | Apply Colors
# | ===========================================================================
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

49
installs/frontend-galaxy.sh Executable file
View File

@ -0,0 +1,49 @@
#!/usr/bin/env bash
export PROFILE_NAME="Frontend Galaxy"
export COLOR_01="#000000" # Black (Host)
export COLOR_02="#F9555F" # Red (Syntax string)
export COLOR_03="#21B089" # Green (Command)
export COLOR_04="#FEF02A" # Yellow (Command second)
export COLOR_05="#589DF6" # Blue (Path)
export COLOR_06="#944D95" # Magenta (Syntax var)
export COLOR_07="#1F9EE7" # Cyan (Prompt)
export COLOR_08="#BBBBBB" # White
export COLOR_09="#555555" # Bright Black
export COLOR_10="#FA8C8F" # Bright Red (Command error)
export COLOR_11="#35BB9A" # Bright Green (Exec)
export COLOR_12="#FFFF55" # Bright Yellow
export COLOR_13="#589DF6" # Bright Blue (Folder)
export COLOR_14="#E75699" # Bright Magenta
export COLOR_15="#3979BC" # Bright Cyan
export COLOR_16="#FFFFFF" # Bright White
export BACKGROUND_COLOR="#1D2837" # Background
export FOREGROUND_COLOR="#FFFFFF" # Foreground (Text)
export CURSOR_COLOR="#FFFFFF" # Cursor
# | ===========================================================================
# | Apply Colors
# | ===========================================================================
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

49
installs/geohot.sh Executable file
View File

@ -0,0 +1,49 @@
#!/usr/bin/env bash
export PROFILE_NAME="Geohot"
export COLOR_01="#F9F5F5" # Black (Host)
export COLOR_02="#CC0000" # Red (Syntax string)
export COLOR_03="#1F1E1F" # Green (Command)
export COLOR_04="#ADA110" # Yellow (Command second)
export COLOR_05="#FF004E" # Blue (Path)
export COLOR_06="#75507B" # Magenta (Syntax var)
export COLOR_07="#06919A" # Cyan (Prompt)
export COLOR_08="#FFFFFF" # White
export COLOR_09="#555753" # Bright Black
export COLOR_10="#EF2929" # Bright Red (Command error)
export COLOR_11="#FF0000" # Bright Green (Exec)
export COLOR_12="#ADA110" # Bright Yellow
export COLOR_13="#5F4AA6" # Bright Blue (Folder)
export COLOR_14="#B74438" # Bright Magenta
export COLOR_15="#408F0C" # Bright Cyan
export COLOR_16="#FFFFFF" # Bright White
export BACKGROUND_COLOR="#1F1E1F" # Background
export FOREGROUND_COLOR="#FFFFFF" # Foreground (Text)
export CURSOR_COLOR="#FFFFFF" # Cursor
# | ===========================================================================
# | Apply Colors
# | ===========================================================================
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

49
installs/github.sh Executable file
View File

@ -0,0 +1,49 @@
#!/usr/bin/env bash
export PROFILE_NAME="Github"
export COLOR_01="#3E3E3E" # Black (Host)
export COLOR_02="#970B16" # Red (Syntax string)
export COLOR_03="#07962A" # Green (Command)
export COLOR_04="#F8EEC7" # Yellow (Command second)
export COLOR_05="#003E8A" # Blue (Path)
export COLOR_06="#E94691" # Magenta (Syntax var)
export COLOR_07="#89D1EC" # Cyan (Prompt)
export COLOR_08="#FFFFFF" # White
export COLOR_09="#666666" # Bright Black
export COLOR_10="#DE0000" # Bright Red (Command error)
export COLOR_11="#87D5A2" # Bright Green (Exec)
export COLOR_12="#F1D007" # Bright Yellow
export COLOR_13="#2E6CBA" # Bright Blue (Folder)
export COLOR_14="#FFA29F" # Bright Magenta
export COLOR_15="#1CFAFE" # Bright Cyan
export COLOR_16="#FFFFFF" # Bright White
export BACKGROUND_COLOR="#F4F4F4" # Background
export FOREGROUND_COLOR="#3E3E3E" # Foreground (Text)
export CURSOR_COLOR="#3E3E3E" # Cursor
# | ===========================================================================
# | Apply Colors
# | ===========================================================================
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

49
installs/gogh.sh Executable file
View File

@ -0,0 +1,49 @@
#!/usr/bin/env bash
export PROFILE_NAME="Gogh"
export COLOR_01="#292D3E" # Black (Host)
export COLOR_02="#F07178" # Red (Syntax string)
export COLOR_03="#62DE84" # Green (Command)
export COLOR_04="#FFCB6B" # Yellow (Command second)
export COLOR_05="#75A1FF" # Blue (Path)
export COLOR_06="#F580FF" # Magenta (Syntax var)
export COLOR_07="#60BAEC" # Cyan (Prompt)
export COLOR_08="#ABB2BF" # White
export COLOR_09="#959DCB" # Bright Black
export COLOR_10="#F07178" # Bright Red (Command error)
export COLOR_11="#C3E88D" # Bright Green (Exec)
export COLOR_12="#FF5572" # Bright Yellow
export COLOR_13="#82AAFF" # Bright Blue (Folder)
export COLOR_14="#FFCB6B" # Bright Magenta
export COLOR_15="#676E95" # Bright Cyan
export COLOR_16="#FFFEFE" # Bright White
export BACKGROUND_COLOR="#292D3E" # Background
export FOREGROUND_COLOR="#BFC7D5" # Foreground (Text)
export CURSOR_COLOR="#BFC7D5" # Cursor
# | ===========================================================================
# | Apply Colors
# | ===========================================================================
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

49
installs/gooey.sh Executable file
View File

@ -0,0 +1,49 @@
#!/usr/bin/env bash
export PROFILE_NAME="Gooey"
export COLOR_01="#000009" # Black (Host)
export COLOR_02="#BB4F6C" # Red (Syntax string)
export COLOR_03="#72CCAE" # Green (Command)
export COLOR_04="#C65E3D" # Yellow (Command second)
export COLOR_05="#58B6CA" # Blue (Path)
export COLOR_06="#6488C4" # Magenta (Syntax var)
export COLOR_07="#8D84C6" # Cyan (Prompt)
export COLOR_08="#858893" # White
export COLOR_09="#1F222D" # Bright Black
export COLOR_10="#EE829F" # Bright Red (Command error)
export COLOR_11="#A5FFE1" # Bright Green (Exec)
export COLOR_12="#F99170" # Bright Yellow
export COLOR_13="#8BE9FD" # Bright Blue (Folder)
export COLOR_14="#97BBF7" # Bright Magenta
export COLOR_15="#C0B7F9" # Bright Cyan
export COLOR_16="#FFFFFF" # Bright White
export BACKGROUND_COLOR="#0D101B" # Background
export FOREGROUND_COLOR="#EBEEF9" # Foreground (Text)
export CURSOR_COLOR="#EBEEF9" # Cursor
# | ===========================================================================
# | Apply Colors
# | ===========================================================================
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

49
installs/google-dark.sh Executable file
View File

@ -0,0 +1,49 @@
#!/usr/bin/env bash
export PROFILE_NAME="Google Dark"
export COLOR_01="#202124" # Black (Host)
export COLOR_02="#EA4335" # Red (Syntax string)
export COLOR_03="#34A853" # Green (Command)
export COLOR_04="#FBBC04" # Yellow (Command second)
export COLOR_05="#4285F4" # Blue (Path)
export COLOR_06="#A142F4" # Magenta (Syntax var)
export COLOR_07="#24C1E0" # Cyan (Prompt)
export COLOR_08="#E8EAED" # White
export COLOR_09="#5F6368" # Bright Black
export COLOR_10="#EA4335" # Bright Red (Command error)
export COLOR_11="#34A853" # Bright Green (Exec)
export COLOR_12="#FBBC05" # Bright Yellow
export COLOR_13="#4285F4" # Bright Blue (Folder)
export COLOR_14="#A142F4" # Bright Magenta
export COLOR_15="#24C1E0" # Bright Cyan
export COLOR_16="#FFFFFF" # Bright White
export BACKGROUND_COLOR="#202124" # Background
export FOREGROUND_COLOR="#E8EAED" # Foreground (Text)
export CURSOR_COLOR="#E8EAED" # Cursor
# | ===========================================================================
# | Apply Colors
# | ===========================================================================
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

49
installs/google-light.sh Executable file
View File

@ -0,0 +1,49 @@
#!/usr/bin/env bash
export PROFILE_NAME="Google Light"
export COLOR_01="#202124" # Black (Host)
export COLOR_02="#EA4335" # Red (Syntax string)
export COLOR_03="#34A853" # Green (Command)
export COLOR_04="#FBBC04" # Yellow (Command second)
export COLOR_05="#4285F4" # Blue (Path)
export COLOR_06="#A142F4" # Magenta (Syntax var)
export COLOR_07="#24C1E0" # Cyan (Prompt)
export COLOR_08="#E8EAED" # White
export COLOR_09="#5F6368" # Bright Black
export COLOR_10="#EA4335" # Bright Red (Command error)
export COLOR_11="#34A853" # Bright Green (Exec)
export COLOR_12="#FBBC05" # Bright Yellow
export COLOR_13="#4285F4" # Bright Blue (Folder)
export COLOR_14="#A142F4" # Bright Magenta
export COLOR_15="#24C1E0" # Bright Cyan
export COLOR_16="#FFFFFF" # Bright White
export BACKGROUND_COLOR="#FFFFFF" # Background
export FOREGROUND_COLOR="#5F6368" # Foreground (Text)
export CURSOR_COLOR="#5F6368" # Cursor
# | ===========================================================================
# | Apply Colors
# | ===========================================================================
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

49
installs/gotham.sh Executable file
View File

@ -0,0 +1,49 @@
#!/usr/bin/env bash
export PROFILE_NAME="Gotham"
export COLOR_01="#0A0F14" # Black (Host)
export COLOR_02="#C33027" # Red (Syntax string)
export COLOR_03="#26A98B" # Green (Command)
export COLOR_04="#EDB54B" # Yellow (Command second)
export COLOR_05="#195465" # Blue (Path)
export COLOR_06="#4E5165" # Magenta (Syntax var)
export COLOR_07="#33859D" # Cyan (Prompt)
export COLOR_08="#98D1CE" # White
export COLOR_09="#10151B" # Bright Black
export COLOR_10="#D26939" # Bright Red (Command error)
export COLOR_11="#081F2D" # Bright Green (Exec)
export COLOR_12="#245361" # Bright Yellow
export COLOR_13="#093748" # Bright Blue (Folder)
export COLOR_14="#888BA5" # Bright Magenta
export COLOR_15="#599CAA" # Bright Cyan
export COLOR_16="#D3EBE9" # Bright White
export BACKGROUND_COLOR="#0A0F14" # Background
export FOREGROUND_COLOR="#98D1CE" # Foreground (Text)
export CURSOR_COLOR="#98D1CE" # Cursor
# | ===========================================================================
# | Apply Colors
# | ===========================================================================
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

49
installs/grape.sh Executable file
View File

@ -0,0 +1,49 @@
#!/usr/bin/env bash
export PROFILE_NAME="Grape"
export COLOR_01="#2D283F" # Black (Host)
export COLOR_02="#ED2261" # Red (Syntax string)
export COLOR_03="#1FA91B" # Green (Command)
export COLOR_04="#8DDC20" # Yellow (Command second)
export COLOR_05="#487DF4" # Blue (Path)
export COLOR_06="#8D35C9" # Magenta (Syntax var)
export COLOR_07="#3BDEED" # Cyan (Prompt)
export COLOR_08="#9E9EA0" # White
export COLOR_09="#59516A" # Bright Black
export COLOR_10="#F0729A" # Bright Red (Command error)
export COLOR_11="#53AA5E" # Bright Green (Exec)
export COLOR_12="#B2DC87" # Bright Yellow
export COLOR_13="#A9BCEC" # Bright Blue (Folder)
export COLOR_14="#AD81C2" # Bright Magenta
export COLOR_15="#9DE3EB" # Bright Cyan
export COLOR_16="#A288F7" # Bright White
export BACKGROUND_COLOR="#171423" # Background
export FOREGROUND_COLOR="#9F9FA1" # Foreground (Text)
export CURSOR_COLOR="#9F9FA1" # Cursor
# | ===========================================================================
# | Apply Colors
# | ===========================================================================
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

49
installs/grass.sh Executable file
View File

@ -0,0 +1,49 @@
#!/usr/bin/env bash
export PROFILE_NAME="Grass"
export COLOR_01="#000000" # Black (Host)
export COLOR_02="#BB0000" # Red (Syntax string)
export COLOR_03="#00BB00" # Green (Command)
export COLOR_04="#E7B000" # Yellow (Command second)
export COLOR_05="#0000A3" # Blue (Path)
export COLOR_06="#950062" # Magenta (Syntax var)
export COLOR_07="#00BBBB" # Cyan (Prompt)
export COLOR_08="#BBBBBB" # White
export COLOR_09="#555555" # Bright Black
export COLOR_10="#BB0000" # Bright Red (Command error)
export COLOR_11="#00BB00" # Bright Green (Exec)
export COLOR_12="#E7B000" # Bright Yellow
export COLOR_13="#0000BB" # Bright Blue (Folder)
export COLOR_14="#FF55FF" # Bright Magenta
export COLOR_15="#55FFFF" # Bright Cyan
export COLOR_16="#FFFFFF" # Bright White
export BACKGROUND_COLOR="#13773D" # Background
export FOREGROUND_COLOR="#FFF0A5" # Foreground (Text)
export CURSOR_COLOR="#FFF0A5" # Cursor
# | ===========================================================================
# | Apply Colors
# | ===========================================================================
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

49
installs/gruvbox-dark.sh Executable file
View File

@ -0,0 +1,49 @@
#!/usr/bin/env bash
export PROFILE_NAME="Gruvbox Dark"
export COLOR_01="#282828" # Black (Host)
export COLOR_02="#CC241D" # Red (Syntax string)
export COLOR_03="#98971A" # Green (Command)
export COLOR_04="#D79921" # Yellow (Command second)
export COLOR_05="#458588" # Blue (Path)
export COLOR_06="#B16286" # Magenta (Syntax var)
export COLOR_07="#689D6A" # Cyan (Prompt)
export COLOR_08="#A89984" # White
export COLOR_09="#928374" # Bright Black
export COLOR_10="#FB4934" # Bright Red (Command error)
export COLOR_11="#B8BB26" # Bright Green (Exec)
export COLOR_12="#FABD2F" # Bright Yellow
export COLOR_13="#83A598" # Bright Blue (Folder)
export COLOR_14="#D3869B" # Bright Magenta
export COLOR_15="#8EC07C" # Bright Cyan
export COLOR_16="#EBDBB2" # Bright White
export BACKGROUND_COLOR="#282828" # Background
export FOREGROUND_COLOR="#EBDBB2" # Foreground (Text)
export CURSOR_COLOR="#EBDBB2" # Cursor
# | ===========================================================================
# | Apply Colors
# | ===========================================================================
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
# Allow developer to change url to forked url for easier testing
# IMPORTANT: Make sure you export this variable if your main shell is not bash
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
else
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi

Some files were not shown because too many files have changed in this diff Show More