diff --git a/themes/breath-light.sh b/themes/breath-light.sh new file mode 100755 index 0000000..28b7d07 --- /dev/null +++ b/themes/breath-light.sh @@ -0,0 +1,55 @@ +#!/usr/bin/env bash + +# ====================CONFIG THIS =============================== # +export COLOR_01="#E8E8E8" # HOST +export COLOR_02="#ED1515" # SYNTAX_STRING +export COLOR_03="#C0392B" # COMMAND +export COLOR_04="#F67400" # COMMAND_COLOR2 +export COLOR_05="#1D99F3" # PATH +export COLOR_06="#9B59B6" # SYNTAX_VAR +export COLOR_07="#1ABC9C" # PROMP +export COLOR_08="#FCFCFC" # + +export COLOR_09="#7F8C8D" # +export COLOR_10="#C0392B" # COMMAND_ERROR +export COLOR_11="#55A649" # EXEC +export COLOR_12="#FDBC4B" # +export COLOR_13="#3DAEE9" # FOLDER +export COLOR_14="#8E44AD" # +export COLOR_15="#16A085" # +export COLOR_16="#FFFFFF" # + +export BACKGROUND_COLOR="#E8E8E8" # Background Color +export FOREGROUND_COLOR="#292F34" # Foreground Color (text) +export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor color +export PROFILE_NAME="Breath Light" +# =============================================================== # + + + + + + + +# =============================================================== # +# | 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/Gogh-Co/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 diff --git a/themes/breath-silverfox.sh b/themes/breath-silverfox.sh new file mode 100755 index 0000000..a5fd1fd --- /dev/null +++ b/themes/breath-silverfox.sh @@ -0,0 +1,55 @@ +#!/usr/bin/env bash + +# ====================CONFIG THIS =============================== # +export COLOR_01="#1e2229" # HOST +export COLOR_02="#ed1515" # SYNTAX_STRING +export COLOR_03="#44853a" # COMMAND +export COLOR_04="#f67400" # COMMAND_COLOR2 +export COLOR_05="#1d99f3" # PATH +export COLOR_06="#9b59b6" # SYNTAX_VAR +export COLOR_07="#1abc9c" # PROMP +export COLOR_08="#fcfcfc" # + +export COLOR_09="#7f8c8d" # +export COLOR_10="#c0392b" # COMMAND_ERROR +export COLOR_11="#55a649" # EXEC +export COLOR_12="#fdbc4b" # +export COLOR_13="#3daee9" # FOLDER +export COLOR_14="#8e44ad" # +export COLOR_15="#16a085" # +export COLOR_16="#ffffff" # + +export BACKGROUND_COLOR="#1e2229" # Background Color +export FOREGROUND_COLOR="#bbbbbb" # Foreground Color (text) +export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor color +export PROFILE_NAME="Breath Silverfox" +# =============================================================== # + + + + + + + +# =============================================================== # +# | 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/Gogh-Co/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 diff --git a/themes/breath.sh b/themes/breath.sh new file mode 100755 index 0000000..fcf328b --- /dev/null +++ b/themes/breath.sh @@ -0,0 +1,55 @@ +#!/usr/bin/env bash + +# ====================CONFIG THIS =============================== # +export COLOR_01="#1E2229" # HOST +export COLOR_02="#ED1515" # SYNTAX_STRING +export COLOR_03="#44853A" # COMMAND +export COLOR_04="#F67400" # COMMAND_COLOR2 +export COLOR_05="#1D99F3" # PATH +export COLOR_06="#9B59B6" # SYNTAX_VAR +export COLOR_07="#1ABC9C" # PROMP +export COLOR_08="#FCFCFC" # + +export COLOR_09="#7F8C8D" # +export COLOR_10="#C0392B" # COMMAND_ERROR +export COLOR_11="#55A649" # EXEC +export COLOR_12="#FDBC4B" # +export COLOR_13="#3DAEE9" # FOLDER +export COLOR_14="#8E44AD" # +export COLOR_15="#16A085" # +export COLOR_16="#FFFFFF" # + +export BACKGROUND_COLOR="#1E2229" # Background Color +export FOREGROUND_COLOR="#17A88B" # Foreground Color (text) +export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor color +export PROFILE_NAME="Breath" +# =============================================================== # + + + + + + + +# =============================================================== # +# | 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/Gogh-Co/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 diff --git a/themes/breeze.sh b/themes/breeze.sh new file mode 100755 index 0000000..ce70aed --- /dev/null +++ b/themes/breeze.sh @@ -0,0 +1,55 @@ +#!/usr/bin/env bash + +# ====================CONFIG THIS =============================== # +export COLOR_01="#232627" # HOST +export COLOR_02="#ED1515" # SYNTAX_STRING +export COLOR_03="#11D116" # COMMAND +export COLOR_04="#F67400" # COMMAND_COLOR2 +export COLOR_05="#1D99F3" # PATH +export COLOR_06="#9B59B6" # SYNTAX_VAR +export COLOR_07="#1ABC9C" # PROMP +export COLOR_08="#FCFCFC" # + +export COLOR_09="#7F8C8D" # +export COLOR_10="#C0392B" # COMMAND_ERROR +export COLOR_11="#1CDC9A" # EXEC +export COLOR_12="#FDBC4B" # +export COLOR_13="#3DAEE9" # FOLDER +export COLOR_14="#8E44AD" # +export COLOR_15="#16A085" # +export COLOR_16="#FFFFFF" # + +export BACKGROUND_COLOR="#232627" # Background Color +export FOREGROUND_COLOR="#FCFCFC" # Foreground Color (text) +export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor color +export PROFILE_NAME="Breeze" +# =============================================================== # + + + + + + + +# =============================================================== # +# | 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/Gogh-Co/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