2017-05-02 11:01:20 +03:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
# ====================CONFIG THIS =============================== #
|
2021-01-14 16:45:54 +03:00
|
|
|
export COLOR_01="#3B4252" #nord1
|
|
|
|
export COLOR_02="#BF616A" #nord11
|
|
|
|
export COLOR_03="#A3BE8C" #nord14
|
|
|
|
export COLOR_04="#EBCB8B" #nord13
|
|
|
|
export COLOR_05="#81A1C1" #nord9
|
|
|
|
export COLOR_06="#B48EAD" #nord15
|
|
|
|
export COLOR_07="#88C0D0" #nord8
|
|
|
|
export COLOR_08="#E5E9F0" #nord5
|
|
|
|
|
|
|
|
export COLOR_09="#4C566A" #nord3
|
|
|
|
export COLOR_10="#BF616A" #nord11
|
|
|
|
export COLOR_11="#A3BE8C" #nord14
|
|
|
|
export COLOR_12="#EBCB8B" #nord13
|
|
|
|
export COLOR_13="#81A1C1" #nord9
|
|
|
|
export COLOR_14="#B48EAD" #nord15
|
|
|
|
export COLOR_15="#8FBCBB" #nord7
|
|
|
|
export COLOR_16="#ECEFF4" #nord6
|
|
|
|
|
|
|
|
export BACKGROUND_COLOR="#2E3440" #nord0
|
|
|
|
export FOREGROUND_COLOR="#D8DEE9" #nord4
|
|
|
|
export CURSOR_COLOR=$FOREGROUND_COLOR
|
2018-11-29 23:48:25 +03:00
|
|
|
export PROFILE_NAME="Nord"
|
2017-05-02 11:01:20 +03:00
|
|
|
# =============================================================== #
|
|
|
|
|
2017-05-19 23:07:01 +03:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# =============================================================== #
|
2017-05-02 11:01:20 +03:00
|
|
|
# | Apply Colors
|
2017-05-19 23:07:01 +03:00
|
|
|
# ===============================================================|#
|
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
|
2018-12-01 20:05:44 +03:00
|
|
|
# IMPORTANT: Make sure you export this variable if your main shell is not bash
|
2018-11-13 20:51:25 +03:00
|
|
|
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
2017-10-21 02:58:17 +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
|