1
0
mirror of https://github.com/Mayccoll/Gogh.git synced 2023-08-10 21:12:46 +03:00
Gogh/themes/one-half-black.sh
2018-11-13 18:51:25 +01:00

57 lines
1.7 KiB
Bash
Executable File

#!/usr/bin/env bash
# This is an adaptation of the "One Half Dark" color scheme published by
# Son A. Pham under the MIT license: https://github.com/sonph/onehalf
# ====================CONFIG THIS =============================== #
COLOR_01="#282c34" # HOST
COLOR_02="#e06c75" # SYNTAX_STRING
COLOR_03="#98c379" # COMMAND
COLOR_04="#e5c07b" # COMMAND_COLOR2
COLOR_05="#61afef" # PATH
COLOR_06="#c678dd" # SYNTAX_VAR
COLOR_07="#56b6c2" # PROMP
COLOR_08="#dcdfe4" #
COLOR_09="#282c34" #
COLOR_10="#e06c75" # COMMAND_ERROR
COLOR_11="#98c379" # EXEC
COLOR_12="#e5c07b" #
COLOR_13="#61afef" # FOLDER
COLOR_14="#c678dd" #
COLOR_15="#56b6c2" #
COLOR_16="#dcdfe4" #
BACKGROUND_COLOR="#000000" # Background Color
FOREGROUND_COLOR="#dcdfe4" # Text
CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor
PROFILE_NAME="One Half Black"
# =============================================
# =============================================================== #
# | Apply Colors
# ===============================================================|#
SCRIPT_PATH="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
PARENT_PATH="$(dirname "$SCRIPT_PATH")"
# Allow developer to change url to forked url for easier testing
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
if [ -e "${PARENT_PATH}/apply-colors.sh" ]
then
source "${PARENT_PATH}/apply-colors.sh"
else
if [ "$(uname)" = "Darwin" ]; then
# OSX ships with curl and ancient bash
eval "$(curl -so- "${BASE_URL}/apply-colors.sh")"
else
# Linux ships with wget
eval "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
fi
fi