2017-07-08 00:53:53 +03:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
2018-11-29 23:48:25 +03:00
|
|
|
export PROFILE_NAME="C64"
|
2017-07-08 00:53:53 +03:00
|
|
|
|
2023-02-26 06:50:46 +03:00
|
|
|
export COLOR_01="#090300" # Black (Host)
|
|
|
|
export COLOR_02="#883932" # Red (Syntax string)
|
2023-02-26 07:28:44 +03:00
|
|
|
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
|
2023-02-26 06:50:46 +03:00
|
|
|
|
|
|
|
export COLOR_09="#000000" # Bright Black
|
|
|
|
export COLOR_10="#883932" # Bright Red (Command error)
|
2023-02-26 07:28:44 +03:00
|
|
|
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
|
2023-02-26 06:50:46 +03:00
|
|
|
|
2023-02-26 07:28:44 +03:00
|
|
|
export BACKGROUND_COLOR="#40318D" # Background
|
|
|
|
export FOREGROUND_COLOR="#7869C4" # Foreground (Text)
|
2023-02-26 06:50:46 +03:00
|
|
|
|
2023-02-26 07:28:44 +03:00
|
|
|
export CURSOR_COLOR="#7869C4" # Cursor
|
2023-02-26 06:50:46 +03:00
|
|
|
|
|
|
|
# | ===========================================================================
|
2017-07-08 00:53:53 +03:00
|
|
|
# | Apply Colors
|
2023-02-26 06:50:46 +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-07-08 00:53:53 +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
|
2022-04-19 02:59:46 +03:00
|
|
|
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Gogh-Co/Gogh/master"}
|
2017-10-21 02:58:17 +03:00
|
|
|
|
2017-07-08 00:53:53 +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-07-08 00:53:53 +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
|