mirror of
https://github.com/Mayccoll/Gogh.git
synced 2023-08-10 21:12:46 +03:00
Compare commits
10 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
389f831bf0 | ||
|
|
02ab3ff458 | ||
|
|
ed3d2e0e9d | ||
|
|
0be37a3a8e | ||
|
|
1cb477d521 | ||
|
|
6609d329af | ||
|
|
3d9ab11f5a | ||
|
|
ad92815bd6 | ||
|
|
3669737386 | ||
|
|
5d4c58b2c3 |
File diff suppressed because one or more lines are too long
4
gogh.sh
4
gogh.sh
@@ -78,6 +78,7 @@ declare -a THEMES=(
|
||||
'frontend-galaxy.sh'
|
||||
'geohot.sh'
|
||||
'github.sh'
|
||||
'gogh.sh'
|
||||
'gooey.sh'
|
||||
'google-dark.sh'
|
||||
'google-light.sh'
|
||||
@@ -202,10 +203,11 @@ declare -a THEMES=(
|
||||
'summer-pop.sh'
|
||||
'sundried.sh'
|
||||
'sweet-eliverlara.sh'
|
||||
'sweet.sh'
|
||||
'sweet-terminal.sh'
|
||||
'symphonic.sh'
|
||||
'synthwave.sh'
|
||||
'teerb.sh'
|
||||
'tender.sh'
|
||||
'terminal-basic.sh'
|
||||
'terminix-dark.sh'
|
||||
'thayer-bright.sh'
|
||||
|
||||
@@ -1,6 +0,0 @@
|
||||
|
||||

|
||||
|
||||
## Themes:
|
||||
|
||||
[Go to theme page :link:](http://mayccoll.github.io/Gogh/)
|
||||
@@ -3,11 +3,11 @@
|
||||
# ====================CONFIG THIS =============================== #
|
||||
export COLOR_01="#292D3E" # Black
|
||||
export COLOR_02="#F07178" # Red
|
||||
export COLOR_03="#C3E88D" # Green
|
||||
export COLOR_03="#62DE84" # Green
|
||||
export COLOR_04="#FFCB6B" # Yellow
|
||||
export COLOR_05="#82AAFF" # Blue
|
||||
export COLOR_06="#C792EA" # Magenta
|
||||
export COLOR_07="#60ADEC" # Cyan
|
||||
export COLOR_05="#75A1FF" # Blue
|
||||
export COLOR_06="#F580FF" # Magenta
|
||||
export COLOR_07="#60BAEC" # Cyan
|
||||
export COLOR_08="#ABB2BF" # Light gray
|
||||
|
||||
export COLOR_09="#959DCB" # Dark gray
|
||||
@@ -22,7 +22,7 @@ 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"
|
||||
export PROFILE_NAME="Gogh"
|
||||
# =============================================================== #
|
||||
|
||||
|
||||
|
||||
55
themes/tender.sh
Executable file
55
themes/tender.sh
Executable file
@@ -0,0 +1,55 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
# ====================CONFIG THIS =============================== #
|
||||
export COLOR_01="#1d1d1d" # Black
|
||||
export COLOR_02="#c5152f" # Red
|
||||
export COLOR_03="#c9d05c" # Green
|
||||
export COLOR_04="#ffc24b" # Yellow
|
||||
export COLOR_05="#b3deef" # Blue
|
||||
export COLOR_06="#d3b987" # Magenta
|
||||
export COLOR_07="#73cef4" # Cyan
|
||||
export COLOR_08="#eeeeee" # Light gray
|
||||
|
||||
export COLOR_09="#323232" # Dark gray
|
||||
export COLOR_10="#f43753" # Light Red
|
||||
export COLOR_11="#d9e066" # Light Green
|
||||
export COLOR_12="#facc72" # Light Yellow
|
||||
export COLOR_13="#c0eafb" # Light Blue
|
||||
export COLOR_14="#efd093" # Light Magenta
|
||||
export COLOR_15="#a1d6ec" # Light Cyan
|
||||
export COLOR_16="#ffffff" # White
|
||||
|
||||
export BACKGROUND_COLOR="#282828" # Background Color
|
||||
export FOREGROUND_COLOR="#EEEEEE" # Foreground Color (text)
|
||||
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor color
|
||||
export PROFILE_NAME="Tender"
|
||||
# =============================================================== #
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# =============================================================== #
|
||||
# | 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/Mayccoll/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
|
||||
Reference in New Issue
Block a user