Gogh/_base.sh

56 lines
1.9 KiB
Bash
Raw Normal View History

2017-05-19 23:07:01 +03:00
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
2019-09-16 12:09:04 +03:00
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)
2018-11-29 23:48:25 +03:00
export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor color
2019-09-16 12:28:12 +03:00
export PROFILE_NAME="_bash"
2018-12-01 21:42:33 +03:00
# =============================================================== #
2017-05-19 23:07:01 +03:00
# =============================================================== #
# | Apply Colors
# ===============================================================|#
2018-11-29 23:48:25 +03:00
SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
2017-05-19 23:07:01 +03:00
2018-11-13 20:51:25 +03:00
# 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
2022-04-19 02:59:46 +03:00
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
2018-11-13 20:51:25 +03:00
2017-05-19 23:07:01 +03:00
2018-11-29 23:48:25 +03:00
if [[ -e "${PARENT_PATH}/apply-colors.sh" ]]; then
bash "${PARENT_PATH}/apply-colors.sh"
2017-05-19 23:07:01 +03:00
else
2018-11-29 23:48:25 +03:00
if [[ "$(uname)" = "Darwin" ]]; then
# OSX ships with curl and ancient bash
2018-11-30 01:20:17 +03:00
bash -c "$(curl -so- "${BASE_URL}/apply-colors.sh")"
2018-11-29 23:48:25 +03:00
else
# Linux ships with wget
2018-11-30 01:20:17 +03:00
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
2018-11-29 23:48:25 +03:00
fi
2018-12-01 01:02:56 +03:00
fi