diff --git a/README.md b/README.md index 18fa1ce..845900d 100644 --- a/README.md +++ b/README.md @@ -3,9 +3,9 @@ Gogh ![elementary](https://raw.githubusercontent.com/Mayccoll/Gogh/master/images/gogh/Gogh-icons.png) -## Color Scheme for Gnome Terminal and Pantheon Terminal +## Color Scheme for Gnome Terminal, Pantheon Terminal and Tilix -Color Schemes For Ubuntu, Linux Mint, Elementary OS and all distributions that use gnome terminal or Pantheon Terminal, initially inspired by Elementary OS Luna. Also work on iTerm for macOS. You can check some themes [here...](https://mayccoll.github.io/Gogh/) +Color Schemes For Ubuntu, Linux Mint, Elementary OS and all distributions that use gnome terminal, Pantheon Terminal or Tilix, initially inspired by Elementary OS Luna. Also work on iTerm for macOS. You can check some themes [here...](https://mayccoll.github.io/Gogh/) ![elementary](https://raw.githubusercontent.com/Mayccoll/Gogh/master/images/demos/themes.gif) diff --git a/apply-colors.sh b/apply-colors.sh index c204e01..90ee098 100755 --- a/apply-colors.sh +++ b/apply-colors.sh @@ -25,7 +25,8 @@ hexRGBtoDecRGB () { } convertRGBtoMac () { - read -r R G B<<<"$(hexRGBtoDecRGB "$1")" + set -- $(hexRGBtoDecRGB "$1") + R=$1; shift; G=$1; shift; B=$1; shift R=$(echo "${R} / 255" | bc -l) G=$(echo "${G} / 255" | bc -l) @@ -37,8 +38,10 @@ convertRGBtoMac () { createMinttyEntry () { local name="$1" local colour="$2" + set -- + set -- $(hexRGBtoDecRGB "$colour") + R=$1; shift; G=$1; shift; B=$1; shift - read -r R G B<<<"$(hexRGBtoDecRGB "$colour")" echo "$name=$R,$G,$B" } @@ -52,8 +55,12 @@ updateMinttyConfig () { } convertNameAndRGBtoITerm() { - local name=$1 - read -r R G B<<<"$(convertRGBtoMac "$2")" + local name="$1" + local colour="$2" + set -- + set -- $(convertRGBtoMac "$colour") + R=$1; shift; G=$1; shift; B=$1; shift + echo "$1Blue Component${B}Green Component${G}Red Component${R}" } @@ -99,6 +106,14 @@ set_theme() { dset use-theme-background "false" } +# | +# | Print theme colors +# | =========================================== +if command -v gogh_truecolor > /dev/null; then + gogh_truecolor +else + gogh_colors +fi # | # | Apply color scheme to terminal @@ -287,21 +302,23 @@ elif [ "$TERMINAL" = "tilix" ]; then fi if [[ ${TILIX_RES::1} =~ ^(y|Y)$ ]]; then - [[ -d "$HOME/.config/tilix/schemes" ]] || mkdir -p "$HOME/.config/tilix/schemes" + [[ -d "$HOME/.config/tilix/schemes" ]] || mkdir -p "${HOME}/.config/tilix/schemes" TILIXCOLORS='{\n\t"background-color":"'${BACKGROUND_COLOR}'",\n\t"badge-color": "#FFFFFF",\n\t"bold-color": "#FFFFFF",\n\t"comment": "Generated by Gogh",\n\t"cursor-background-color": "#000000",\n\t"cursor-foreground-color": "'${CURSOR_COLOR}'",\n\t"foreground-color": "#FFFFFF",\n\t"highlight-background-color": "#000000",\n\t"highlight-foreground-color": "#FFFFFF",\n\t"name": "'${PROFILE_NAME}'",\n\t"palette": [\n\t\t"'${COLOR_01}'",\n\t\t"'${COLOR_02}'",\n\t\t"'${COLOR_03}'",\n\t\t"'${COLOR_04}'",\n\t\t"'${COLOR_05}'",\n\t\t"'${COLOR_06}'",\n\t\t"'${COLOR_07}'",\n\t\t"'${COLOR_08}'",\n\t\t"'${COLOR_09}'",\n\t\t"'${COLOR_10}'",\n\t\t"'${COLOR_11}'",\n\t\t"'${COLOR_12}'",\n\t\t"'${COLOR_13}'",\n\t\t"'${COLOR_14}'",\n\t\t"'${COLOR_15}'",\n\t\t"'${COLOR_16}'"\n\t],\n\t"use-badge-color": false,\n\t"use-bold-color": false,\n\t"use-cursor-color": false,\n\t"use-highlight-color": false,\n\t"use-theme-colors": false\n}' - echo -e "$TILIXCOLORS" > "$scratchdir/${PROFILE_NAME}.json" + echo -e "$TILIXCOLORS" > "${scratchdir}/${PROFILE_NAME}.json" # Note: Tilix does not store color scheme name in dconf # so we have to update color palette for the current profile in order to switch to the new theme # but only set the palette on the last loop to avoid a flashing terminal if ((LOOP == OPTLENGTH)); then - cp -f "$scratchdir/*" "$HOME/.config/tilix/schemes/" - rm -rf "$scratchdir" + cp -f "$scratchdir"/* "$HOME/.config/tilix/schemes/" + rm -rf "${scratchdir}" PROFILE_KEY="$BASE_KEY_NEW/$DEFAULT_SLUG" PROFILE_NAME=$($DCONF read $PROFILE_KEY/visible-name | tr -d "'") read -r -p "All done - apply new theme? [y/N] " -n 1 TILIX_RES if [[ ${TILIX_RES::1} =~ ^(y|Y)$ ]]; then + PROFILE_KEY="$BASE_KEY_NEW/$DEFAULT_SLUG" + PROFILE_NAME=$($DCONF read $PROFILE_KEY/visible-name | tr -d "'") set_theme dset palette "['${COLOR_01}', '${COLOR_02}', '${COLOR_03}', '${COLOR_04}', '${COLOR_05}', '${COLOR_06}', '${COLOR_07}', '${COLOR_08}', '${COLOR_09}', '${COLOR_10}', '${COLOR_11}', '${COLOR_12}', '${COLOR_13}', '${COLOR_14}', '${COLOR_15}', '${COLOR_16}']" fi @@ -475,5 +492,4 @@ else unset PROFILE_SLUG unset DCONF unset UUIDGEN - fi diff --git a/gogh.sh b/gogh.sh index 23038c8..fd6afe9 100755 --- a/gogh.sh +++ b/gogh.sh @@ -54,6 +54,8 @@ declare -a THEMES=( 'frontend-fun-forrest.sh' 'frontend-galaxy.sh' 'github.sh' + 'google-dark.sh' + 'google-light.sh' 'gooey.sh' 'grape.sh' 'grass.sh' @@ -169,8 +171,6 @@ declare -a THEMES=( 'wombat.sh' 'wryan.sh' 'zenburn.sh' - 'google-light.sh' - 'google-dark.sh' ) @@ -178,13 +178,14 @@ cleanup() { echo echo "Caught signal..$? Cleaning up" rm -rf "$scratchdir" + unset TERMINAL TRUECOLOR LOOP OPTLENGTH echo "Done..." - exit 1 + exit 0 } scratchdir=$(mktemp -d -t tmp.XXXXXXXX) export scratchdir -trap cleanup SIGHUP SIGINT SIGQUIT SIGABRT +trap 'cleanup; trap - EXIT' EXIT HUP INT QUIT PIPE TERM capitalize() { @@ -313,11 +314,30 @@ if [[ "$TERMINAL" = "tilix" ]]; then echo fi +# | +# | If terminal supports truecolor then we can show theme colors without applying the theme +# | =========================================== +if [[ "$COLORTERM" == "truecolor" ]] || [[ "$COLORTERM" == "24bit" ]]; then + # This function gets called in apply-colors.sh instead of gogh_colors + # Calls to gogh_colors has also been move to apply-colors.sh to avoid printing twice + function gogh_truecolor () { + echo + for c in {01..16}; do + local color="COLOR_$c" + set -- $(hexRGBtoDecRGB "${!color}") + echo -ne "\033[38;2;${1};${2};${3}m█████" + [[ "$c" == "08" ]] && echo # new line + done + echo + } + export -f gogh_truecolor +fi + # | # | ::::::: Export one-off variables # | [[ -v TILIX_RES ]] && export TILIX_RES -export TERMINAL LOOP OPTLENGTH=${#OPTION[@]} +export TERMINAL LOOP OPTLENGTH=${#OPTION[@]} # | # | ::::::: Apply Theme diff --git a/themes/3024-day.sh b/themes/3024-day.sh index 8c1b43a..0e6ed27 100755 --- a/themes/3024-day.sh +++ b/themes/3024-day.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/3024-night.sh b/themes/3024-night.sh index a94bdf9..7d3f89d 100755 --- a/themes/3024-night.sh +++ b/themes/3024-night.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/_base.sh b/themes/_base.sh index ebab783..b75e2b4 100755 --- a/themes/_base.sh +++ b/themes/_base.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ] then diff --git a/themes/aci.sh b/themes/aci.sh index a69a83a..429e5c7 100755 --- a/themes/aci.sh +++ b/themes/aci.sh @@ -53,11 +53,9 @@ PARENT_PATH="$(dirname "$SCRIPT_PATH")" if [ -e $PARENT_PATH"/apply-colors.sh" ] then -gogh_colors source $PARENT_PATH"/apply-colors.sh" else -gogh_colors if [ $(uname) = "Darwin" ]; then # OSX ships with curl and ancient bash # Note: here, sourcing directly from curl does not work diff --git a/themes/aco.sh b/themes/aco.sh index eab5c66..40bd595 100755 --- a/themes/aco.sh +++ b/themes/aco.sh @@ -53,11 +53,9 @@ PARENT_PATH="$(dirname "$SCRIPT_PATH")" if [ -e $PARENT_PATH"/apply-colors.sh" ] then -gogh_colors source $PARENT_PATH"/apply-colors.sh" else -gogh_colors if [ $(uname) = "Darwin" ]; then # OSX ships with curl and ancient bash # Note: here, sourcing directly from curl does not work diff --git a/themes/adventuretime.sh b/themes/adventuretime.sh index 48fc643..15c6bcc 100755 --- a/themes/adventuretime.sh +++ b/themes/adventuretime.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/afterglow.sh b/themes/afterglow.sh index b64b163..8657336 100755 --- a/themes/afterglow.sh +++ b/themes/afterglow.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/alien-blood.sh b/themes/alien-blood.sh index 0b34c25..e997fa0 100755 --- a/themes/alien-blood.sh +++ b/themes/alien-blood.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/argonaut.sh b/themes/argonaut.sh index ab80ba0..78f4cf4 100755 --- a/themes/argonaut.sh +++ b/themes/argonaut.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/arthur.sh b/themes/arthur.sh index c312089..39c3ef0 100755 --- a/themes/arthur.sh +++ b/themes/arthur.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/atom.sh b/themes/atom.sh index 12c36f8..0889cfa 100755 --- a/themes/atom.sh +++ b/themes/atom.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/azu.sh b/themes/azu.sh index e500e8b..759a294 100755 --- a/themes/azu.sh +++ b/themes/azu.sh @@ -53,11 +53,9 @@ PARENT_PATH="$(dirname "$SCRIPT_PATH")" if [ -e $PARENT_PATH"/apply-colors.sh" ] then -gogh_colors source $PARENT_PATH"/apply-colors.sh" else -gogh_colors if [ $(uname) = "Darwin" ]; then # OSX ships with curl and ancient bash # Note: here, sourcing directly from curl does not work diff --git a/themes/belafonte-day.sh b/themes/belafonte-day.sh index 9d19507..ffc1355 100755 --- a/themes/belafonte-day.sh +++ b/themes/belafonte-day.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/belafonte-night.sh b/themes/belafonte-night.sh index c9d9565..5facaaa 100755 --- a/themes/belafonte-night.sh +++ b/themes/belafonte-night.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/bim.sh b/themes/bim.sh index cc4f043..b0bf219 100755 --- a/themes/bim.sh +++ b/themes/bim.sh @@ -53,11 +53,9 @@ PARENT_PATH="$(dirname "$SCRIPT_PATH")" if [ -e $PARENT_PATH"/apply-colors.sh" ] then -gogh_colors source $PARENT_PATH"/apply-colors.sh" else -gogh_colors if [ $(uname) = "Darwin" ]; then # OSX ships with curl and ancient bash # Note: here, sourcing directly from curl does not work diff --git a/themes/birds-of-paradise.sh b/themes/birds-of-paradise.sh index 2d3e96a..ceb1538 100755 --- a/themes/birds-of-paradise.sh +++ b/themes/birds-of-paradise.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/blazer.sh b/themes/blazer.sh index 57d94c5..379968f 100755 --- a/themes/blazer.sh +++ b/themes/blazer.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/borland.sh b/themes/borland.sh index aa67540..a9ab2df 100755 --- a/themes/borland.sh +++ b/themes/borland.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/broadcast.sh b/themes/broadcast.sh index e471ca2..c400767 100755 --- a/themes/broadcast.sh +++ b/themes/broadcast.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/brogrammer.sh b/themes/brogrammer.sh index ae439cc..83e7a5f 100755 --- a/themes/brogrammer.sh +++ b/themes/brogrammer.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/c64.sh b/themes/c64.sh index afcaf2d..81c1fd5 100755 --- a/themes/c64.sh +++ b/themes/c64.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/cai.sh b/themes/cai.sh index 6b01d5e..e095dd6 100755 --- a/themes/cai.sh +++ b/themes/cai.sh @@ -53,11 +53,9 @@ PARENT_PATH="$(dirname "$SCRIPT_PATH")" if [ -e $PARENT_PATH"/apply-colors.sh" ] then -gogh_colors source $PARENT_PATH"/apply-colors.sh" else -gogh_colors if [ $(uname) = "Darwin" ]; then # OSX ships with curl and ancient bash # Note: here, sourcing directly from curl does not work diff --git a/themes/chalk.sh b/themes/chalk.sh index 21342de..b45b10f 100755 --- a/themes/chalk.sh +++ b/themes/chalk.sh @@ -53,11 +53,9 @@ PARENT_PATH="$(dirname "$SCRIPT_PATH")" if [ -e $PARENT_PATH"/apply-colors.sh" ] then -gogh_colors source $PARENT_PATH"/apply-colors.sh" else -gogh_colors if [ $(uname) = "Darwin" ]; then # OSX ships with curl and ancient bash # Note: here, sourcing directly from curl does not work diff --git a/themes/chalkboard.sh b/themes/chalkboard.sh index 56c56c8..cac0472 100755 --- a/themes/chalkboard.sh +++ b/themes/chalkboard.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/ciapre.sh b/themes/ciapre.sh index d200509..0b664cc 100755 --- a/themes/ciapre.sh +++ b/themes/ciapre.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/clone-of-ubuntu.sh b/themes/clone-of-ubuntu.sh index 140c8b3..21f83af 100755 --- a/themes/clone-of-ubuntu.sh +++ b/themes/clone-of-ubuntu.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ] then diff --git a/themes/clrs.sh b/themes/clrs.sh index 4fd067a..fb01cba 100755 --- a/themes/clrs.sh +++ b/themes/clrs.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/cobalt-neon.sh b/themes/cobalt-neon.sh index fe38b45..828436f 100755 --- a/themes/cobalt-neon.sh +++ b/themes/cobalt-neon.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/cobalt2.sh b/themes/cobalt2.sh index 9abec7d..cc20fb6 100755 --- a/themes/cobalt2.sh +++ b/themes/cobalt2.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/crayon-pony-fish.sh b/themes/crayon-pony-fish.sh index 599f4cb..87e30c4 100755 --- a/themes/crayon-pony-fish.sh +++ b/themes/crayon-pony-fish.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/dark-pastel.sh b/themes/dark-pastel.sh index 228aa79..b665617 100755 --- a/themes/dark-pastel.sh +++ b/themes/dark-pastel.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/darkside.sh b/themes/darkside.sh index 164ee42..b0b1986 100755 --- a/themes/darkside.sh +++ b/themes/darkside.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/desert.sh b/themes/desert.sh index c3701f2..b51ca6c 100755 --- a/themes/desert.sh +++ b/themes/desert.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/dimmed-monokai.sh b/themes/dimmed-monokai.sh index f5f9761..fe1e592 100755 --- a/themes/dimmed-monokai.sh +++ b/themes/dimmed-monokai.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/dracula.sh b/themes/dracula.sh index 79d262c..85a2476 100755 --- a/themes/dracula.sh +++ b/themes/dracula.sh @@ -53,11 +53,9 @@ PARENT_PATH="$(dirname "$SCRIPT_PATH")" if [ -e $PARENT_PATH"/apply-colors.sh" ] then -gogh_colors source $PARENT_PATH"/apply-colors.sh" else -gogh_colors if [ $(uname) = "Darwin" ]; then # OSX ships with curl and ancient bash # Note: here, sourcing directly from curl does not work diff --git a/themes/earthsong.sh b/themes/earthsong.sh index ed6d6e1..fa831d8 100755 --- a/themes/earthsong.sh +++ b/themes/earthsong.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/elemental.sh b/themes/elemental.sh index ac3a932..f6f7a2d 100755 --- a/themes/elemental.sh +++ b/themes/elemental.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/elementary.sh b/themes/elementary.sh index 8e65cfa..dce129e 100755 --- a/themes/elementary.sh +++ b/themes/elementary.sh @@ -53,11 +53,9 @@ PARENT_PATH="$(dirname "$SCRIPT_PATH")" if [ -e $PARENT_PATH"/apply-colors.sh" ] then -gogh_colors source $PARENT_PATH"/apply-colors.sh" else -gogh_colors if [ $(uname) = "Darwin" ]; then # OSX ships with curl and ancient bash # Note: here, sourcing directly from curl does not work diff --git a/themes/elic.sh b/themes/elic.sh index 36c34a4..e165f5f 100755 --- a/themes/elic.sh +++ b/themes/elic.sh @@ -53,11 +53,9 @@ PARENT_PATH="$(dirname "$SCRIPT_PATH")" if [ -e $PARENT_PATH"/apply-colors.sh" ] then -gogh_colors source $PARENT_PATH"/apply-colors.sh" else -gogh_colors if [ $(uname) = "Darwin" ]; then # OSX ships with curl and ancient bash # Note: here, sourcing directly from curl does not work diff --git a/themes/elio.sh b/themes/elio.sh index c1100f2..145dcd6 100755 --- a/themes/elio.sh +++ b/themes/elio.sh @@ -53,11 +53,9 @@ PARENT_PATH="$(dirname "$SCRIPT_PATH")" if [ -e $PARENT_PATH"/apply-colors.sh" ] then -gogh_colors source $PARENT_PATH"/apply-colors.sh" else -gogh_colors if [ $(uname) = "Darwin" ]; then # OSX ships with curl and ancient bash # Note: here, sourcing directly from curl does not work diff --git a/themes/espresso-libre.sh b/themes/espresso-libre.sh index 154faf7..33fd34d 100755 --- a/themes/espresso-libre.sh +++ b/themes/espresso-libre.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/espresso.sh b/themes/espresso.sh index 1bab940..95904a9 100755 --- a/themes/espresso.sh +++ b/themes/espresso.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/fishtank.sh b/themes/fishtank.sh index 6205e4a..26158c5 100755 --- a/themes/fishtank.sh +++ b/themes/fishtank.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/flat.sh b/themes/flat.sh index c77209c..a8812e3 100755 --- a/themes/flat.sh +++ b/themes/flat.sh @@ -53,11 +53,9 @@ PARENT_PATH="$(dirname "$SCRIPT_PATH")" if [ -e $PARENT_PATH"/apply-colors.sh" ] then -gogh_colors source $PARENT_PATH"/apply-colors.sh" else -gogh_colors if [ $(uname) = "Darwin" ]; then # OSX ships with curl and ancient bash # Note: here, sourcing directly from curl does not work diff --git a/themes/flatland.sh b/themes/flatland.sh index 26ac8b7..867b04b 100755 --- a/themes/flatland.sh +++ b/themes/flatland.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/foxnightly.sh b/themes/foxnightly.sh index 5c74348..1f18201 100755 --- a/themes/foxnightly.sh +++ b/themes/foxnightly.sh @@ -54,11 +54,9 @@ PARENT_PATH="$(dirname "$SCRIPT_PATH")" if [ -e $PARENT_PATH"/apply-colors.sh" ] then -gogh_colors source $PARENT_PATH"/apply-colors.sh" else -gogh_colors if [ $(uname) = "Darwin" ]; then # OSX ships with curl and ancient bash # Note: here, sourcing directly from curl does not work diff --git a/themes/freya.sh b/themes/freya.sh index 34d211b..d22f9fb 100755 --- a/themes/freya.sh +++ b/themes/freya.sh @@ -53,11 +53,9 @@ PARENT_PATH="$(dirname "$SCRIPT_PATH")" if [ -e $PARENT_PATH"/apply-colors.sh" ] then -gogh_colors source $PARENT_PATH"/apply-colors.sh" else -gogh_colors if [ $(uname) = "Darwin" ]; then # OSX ships with curl and ancient bash # Note: here, sourcing directly from curl does not work diff --git a/themes/frontend-delight.sh b/themes/frontend-delight.sh index 6b9a0fc..d20b571 100755 --- a/themes/frontend-delight.sh +++ b/themes/frontend-delight.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/frontend-fun-forrest.sh b/themes/frontend-fun-forrest.sh index 8327136..1b6cccf 100755 --- a/themes/frontend-fun-forrest.sh +++ b/themes/frontend-fun-forrest.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/frontend-galaxy.sh b/themes/frontend-galaxy.sh index b6a9caf..77a358b 100755 --- a/themes/frontend-galaxy.sh +++ b/themes/frontend-galaxy.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/github.sh b/themes/github.sh index a7ef740..652f979 100755 --- a/themes/github.sh +++ b/themes/github.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/gooey.sh b/themes/gooey.sh index fba918e..2cc613b 100755 --- a/themes/gooey.sh +++ b/themes/gooey.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ] then diff --git a/themes/grape.sh b/themes/grape.sh index 47dc675..981da1a 100755 --- a/themes/grape.sh +++ b/themes/grape.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/grass.sh b/themes/grass.sh index 9a9b5e6..d44f0e9 100755 --- a/themes/grass.sh +++ b/themes/grass.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/gruvbox-dark.sh b/themes/gruvbox-dark.sh index c63ffc9..8c01c61 100755 --- a/themes/gruvbox-dark.sh +++ b/themes/gruvbox-dark.sh @@ -53,11 +53,9 @@ PARENT_PATH="$(dirname "$SCRIPT_PATH")" if [ -e $PARENT_PATH"/apply-colors.sh" ] then -gogh_colors source $PARENT_PATH"/apply-colors.sh" else -gogh_colors if [ $(uname) = "Darwin" ]; then # OSX ships with curl and ancient bash # Note: here, sourcing directly from curl does not work diff --git a/themes/gruvbox.sh b/themes/gruvbox.sh index 5ce05bf..e4a22a4 100755 --- a/themes/gruvbox.sh +++ b/themes/gruvbox.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/hardcore.sh b/themes/hardcore.sh index 94830fa..0d32f79 100755 --- a/themes/hardcore.sh +++ b/themes/hardcore.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/harper.sh b/themes/harper.sh index 8635f33..7cddb38 100755 --- a/themes/harper.sh +++ b/themes/harper.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/hemisu-dark.sh b/themes/hemisu-dark.sh index 246a632..36c7fd5 100755 --- a/themes/hemisu-dark.sh +++ b/themes/hemisu-dark.sh @@ -53,11 +53,9 @@ PARENT_PATH="$(dirname "$SCRIPT_PATH")" if [ -e $PARENT_PATH"/apply-colors.sh" ] then -gogh_colors source $PARENT_PATH"/apply-colors.sh" else -gogh_colors if [ $(uname) = "Darwin" ]; then # OSX ships with curl and ancient bash # Note: here, sourcing directly from curl does not work diff --git a/themes/hemisu-light.sh b/themes/hemisu-light.sh index 1063c9b..3a7db60 100755 --- a/themes/hemisu-light.sh +++ b/themes/hemisu-light.sh @@ -53,11 +53,9 @@ PARENT_PATH="$(dirname "$SCRIPT_PATH")" if [ -e $PARENT_PATH"/apply-colors.sh" ] then -gogh_colors source $PARENT_PATH"/apply-colors.sh" else -gogh_colors if [ $(uname) = "Darwin" ]; then # OSX ships with curl and ancient bash # Note: here, sourcing directly from curl does not work diff --git a/themes/highway.sh b/themes/highway.sh index 551b89d..a550e6c 100755 --- a/themes/highway.sh +++ b/themes/highway.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/hipster-green.sh b/themes/hipster-green.sh index a86b16f..67cfec1 100755 --- a/themes/hipster-green.sh +++ b/themes/hipster-green.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/homebrew.sh b/themes/homebrew.sh index d32b770..caa73e9 100755 --- a/themes/homebrew.sh +++ b/themes/homebrew.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/hurtado.sh b/themes/hurtado.sh index c905c6e..43be000 100755 --- a/themes/hurtado.sh +++ b/themes/hurtado.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/hybrid.sh b/themes/hybrid.sh index 9c203cb..36b4050 100755 --- a/themes/hybrid.sh +++ b/themes/hybrid.sh @@ -53,11 +53,9 @@ PARENT_PATH="$(dirname "$SCRIPT_PATH")" if [ -e $PARENT_PATH"/apply-colors.sh" ] then -gogh_colors source $PARENT_PATH"/apply-colors.sh" else -gogh_colors if [ $(uname) = "Darwin" ]; then # OSX ships with curl and ancient bash # Note: here, sourcing directly from curl does not work diff --git a/themes/ic-green-ppl.sh b/themes/ic-green-ppl.sh index c0e212b..ef80277 100755 --- a/themes/ic-green-ppl.sh +++ b/themes/ic-green-ppl.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/ic-orange-ppl.sh b/themes/ic-orange-ppl.sh index 89db288..3194e98 100755 --- a/themes/ic-orange-ppl.sh +++ b/themes/ic-orange-ppl.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/idle-toes.sh b/themes/idle-toes.sh index eac8d9d..2710a47 100755 --- a/themes/idle-toes.sh +++ b/themes/idle-toes.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/ir-black.sh b/themes/ir-black.sh index 2706a34..6940fba 100755 --- a/themes/ir-black.sh +++ b/themes/ir-black.sh @@ -53,11 +53,9 @@ PARENT_PATH="$(dirname "$SCRIPT_PATH")" if [ -e $PARENT_PATH"/apply-colors.sh" ] then -gogh_colors source $PARENT_PATH"/apply-colors.sh" else -gogh_colors if [ $(uname) = "Darwin" ]; then # OSX ships with curl and ancient bash # Note: here, sourcing directly from curl does not work diff --git a/themes/jackie-brown.sh b/themes/jackie-brown.sh index a766f1f..14f8775 100755 --- a/themes/jackie-brown.sh +++ b/themes/jackie-brown.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/japanesque.sh b/themes/japanesque.sh index b6a5ded..567c2eb 100755 --- a/themes/japanesque.sh +++ b/themes/japanesque.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/jellybeans.sh b/themes/jellybeans.sh index 5cbe68b..da1c34a 100755 --- a/themes/jellybeans.sh +++ b/themes/jellybeans.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/jup.sh b/themes/jup.sh index 29976d6..c23bd2b 100755 --- a/themes/jup.sh +++ b/themes/jup.sh @@ -53,11 +53,9 @@ PARENT_PATH="$(dirname "$SCRIPT_PATH")" if [ -e $PARENT_PATH"/apply-colors.sh" ] then -gogh_colors source $PARENT_PATH"/apply-colors.sh" else -gogh_colors if [ $(uname) = "Darwin" ]; then # OSX ships with curl and ancient bash # Note: here, sourcing directly from curl does not work diff --git a/themes/kibble.sh b/themes/kibble.sh index a395ebd..76bac53 100755 --- a/themes/kibble.sh +++ b/themes/kibble.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/later-this-evening.sh b/themes/later-this-evening.sh index 00f30f6..3d56718 100755 --- a/themes/later-this-evening.sh +++ b/themes/later-this-evening.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/lavandula.sh b/themes/lavandula.sh index 2fab288..3ac6e85 100755 --- a/themes/lavandula.sh +++ b/themes/lavandula.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/liquid-carbon-transparent.sh b/themes/liquid-carbon-transparent.sh index 13ef917..f1a284e 100755 --- a/themes/liquid-carbon-transparent.sh +++ b/themes/liquid-carbon-transparent.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/liquid-carbon.sh b/themes/liquid-carbon.sh index ba14901..c276d57 100755 --- a/themes/liquid-carbon.sh +++ b/themes/liquid-carbon.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/man-page.sh b/themes/man-page.sh index eb1465a..fa9fd84 100755 --- a/themes/man-page.sh +++ b/themes/man-page.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/mar.sh b/themes/mar.sh index cc0c86f..1ce28db 100755 --- a/themes/mar.sh +++ b/themes/mar.sh @@ -53,11 +53,9 @@ PARENT_PATH="$(dirname "$SCRIPT_PATH")" if [ -e $PARENT_PATH"/apply-colors.sh" ] then -gogh_colors source $PARENT_PATH"/apply-colors.sh" else -gogh_colors if [ $(uname) = "Darwin" ]; then # OSX ships with curl and ancient bash # Note: here, sourcing directly from curl does not work diff --git a/themes/material.sh b/themes/material.sh index 1b5cf05..dc78dd1 100755 --- a/themes/material.sh +++ b/themes/material.sh @@ -53,11 +53,9 @@ PARENT_PATH="$(dirname "$SCRIPT_PATH")" if [ -e $PARENT_PATH"/apply-colors.sh" ] then -gogh_colors source $PARENT_PATH"/apply-colors.sh" else -gogh_colors if [ $(uname) = "Darwin" ]; then # OSX ships with curl and ancient bash # Note: here, sourcing directly from curl does not work diff --git a/themes/mathias.sh b/themes/mathias.sh index be260b5..dd0c1b8 100755 --- a/themes/mathias.sh +++ b/themes/mathias.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/medallion.sh b/themes/medallion.sh index 250c587..aba6369 100755 --- a/themes/medallion.sh +++ b/themes/medallion.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/misterioso.sh b/themes/misterioso.sh index 0b87ac1..b36a968 100755 --- a/themes/misterioso.sh +++ b/themes/misterioso.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/miu.sh b/themes/miu.sh index cb11579..e24ec4e 100755 --- a/themes/miu.sh +++ b/themes/miu.sh @@ -53,11 +53,9 @@ PARENT_PATH="$(dirname "$SCRIPT_PATH")" if [ -e $PARENT_PATH"/apply-colors.sh" ] then -gogh_colors source $PARENT_PATH"/apply-colors.sh" else -gogh_colors if [ $(uname) = "Darwin" ]; then # OSX ships with curl and ancient bash # Note: here, sourcing directly from curl does not work diff --git a/themes/molokai.sh b/themes/molokai.sh index 41882bc..9d6dbe6 100755 --- a/themes/molokai.sh +++ b/themes/molokai.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/mona-lisa.sh b/themes/mona-lisa.sh index 71e3c48..fa8ff43 100755 --- a/themes/mona-lisa.sh +++ b/themes/mona-lisa.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/monokai-dark.sh b/themes/monokai-dark.sh index 47f5a81..b72b651 100755 --- a/themes/monokai-dark.sh +++ b/themes/monokai-dark.sh @@ -53,11 +53,9 @@ PARENT_PATH="$(dirname "$SCRIPT_PATH")" if [ -e $PARENT_PATH"/apply-colors.sh" ] then -gogh_colors source $PARENT_PATH"/apply-colors.sh" else -gogh_colors if [ $(uname) = "Darwin" ]; then # OSX ships with curl and ancient bash # Note: here, sourcing directly from curl does not work diff --git a/themes/monokai-soda.sh b/themes/monokai-soda.sh index c26efe3..f36dc11 100755 --- a/themes/monokai-soda.sh +++ b/themes/monokai-soda.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/n0tch2k.sh b/themes/n0tch2k.sh index 60c3218..47214df 100755 --- a/themes/n0tch2k.sh +++ b/themes/n0tch2k.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/neopolitan.sh b/themes/neopolitan.sh index 45a151c..de410fc 100755 --- a/themes/neopolitan.sh +++ b/themes/neopolitan.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/nep.sh b/themes/nep.sh index c78426a..48c0da8 100755 --- a/themes/nep.sh +++ b/themes/nep.sh @@ -53,11 +53,9 @@ PARENT_PATH="$(dirname "$SCRIPT_PATH")" if [ -e $PARENT_PATH"/apply-colors.sh" ] then -gogh_colors source $PARENT_PATH"/apply-colors.sh" else -gogh_colors if [ $(uname) = "Darwin" ]; then # OSX ships with curl and ancient bash # Note: here, sourcing directly from curl does not work diff --git a/themes/neutron.sh b/themes/neutron.sh index 1906c41..b580d62 100755 --- a/themes/neutron.sh +++ b/themes/neutron.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/nightlion-v1.sh b/themes/nightlion-v1.sh index fb189f7..cfb27ad 100755 --- a/themes/nightlion-v1.sh +++ b/themes/nightlion-v1.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/nightlion-v2.sh b/themes/nightlion-v2.sh index f5ac3c2..79aae5f 100755 --- a/themes/nightlion-v2.sh +++ b/themes/nightlion-v2.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/nighty.sh b/themes/nighty.sh index 8286732..9457724 100644 --- a/themes/nighty.sh +++ b/themes/nighty.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ] then diff --git a/themes/nord-light.sh b/themes/nord-light.sh index ccc31f8..215e478 100755 --- a/themes/nord-light.sh +++ b/themes/nord-light.sh @@ -53,11 +53,9 @@ PARENT_PATH="$(dirname "$SCRIPT_PATH")" if [ -e $PARENT_PATH"/apply-colors.sh" ] then -gogh_colors source $PARENT_PATH"/apply-colors.sh" else -gogh_colors if [ $(uname) = "Darwin" ]; then # OSX ships with curl and ancient bash # Note: here, sourcing directly from curl does not work diff --git a/themes/nord.sh b/themes/nord.sh index d1e3a45..d8be983 100755 --- a/themes/nord.sh +++ b/themes/nord.sh @@ -53,11 +53,9 @@ PARENT_PATH="$(dirname "$SCRIPT_PATH")" if [ -e $PARENT_PATH"/apply-colors.sh" ] then -gogh_colors source $PARENT_PATH"/apply-colors.sh" else -gogh_colors if [ $(uname) = "Darwin" ]; then # OSX ships with curl and ancient bash # Note: here, sourcing directly from curl does not work diff --git a/themes/novel.sh b/themes/novel.sh index 55b685b..4188e89 100755 --- a/themes/novel.sh +++ b/themes/novel.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/obsidian.sh b/themes/obsidian.sh index 2206653..368f54b 100755 --- a/themes/obsidian.sh +++ b/themes/obsidian.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/ocean-dark.sh b/themes/ocean-dark.sh index adb5fd7..6dce0cc 100755 --- a/themes/ocean-dark.sh +++ b/themes/ocean-dark.sh @@ -53,11 +53,9 @@ PARENT_PATH="$(dirname "$SCRIPT_PATH")" if [ -e $PARENT_PATH"/apply-colors.sh" ] then -gogh_colors source $PARENT_PATH"/apply-colors.sh" else -gogh_colors if [ $(uname) = "Darwin" ]; then # OSX ships with curl and ancient bash # Note: here, sourcing directly from curl does not work diff --git a/themes/ocean.sh b/themes/ocean.sh index 1edfb89..38f8475 100755 --- a/themes/ocean.sh +++ b/themes/ocean.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/oceanic-next.sh b/themes/oceanic-next.sh index d838ec6..01065d5 100755 --- a/themes/oceanic-next.sh +++ b/themes/oceanic-next.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/ollie.sh b/themes/ollie.sh index 35479a5..245cc43 100755 --- a/themes/ollie.sh +++ b/themes/ollie.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/one-dark.sh b/themes/one-dark.sh index 7ded4c0..7819ac5 100755 --- a/themes/one-dark.sh +++ b/themes/one-dark.sh @@ -53,11 +53,9 @@ PARENT_PATH="$(dirname "$SCRIPT_PATH")" if [ -e $PARENT_PATH"/apply-colors.sh" ] then -gogh_colors source $PARENT_PATH"/apply-colors.sh" else -gogh_colors if [ $(uname) = "Darwin" ]; then # OSX ships with curl and ancient bash # Note: here, sourcing directly from curl does not work diff --git a/themes/one-half-black.sh b/themes/one-half-black.sh index 9a0036f..d0b4be5 100755 --- a/themes/one-half-black.sh +++ b/themes/one-half-black.sh @@ -55,11 +55,9 @@ PARENT_PATH="$(dirname "$SCRIPT_PATH")" if [ -e $PARENT_PATH"/apply-colors.sh" ] then -gogh_colors source $PARENT_PATH"/apply-colors.sh" else -gogh_colors if [ $(uname) = "Darwin" ]; then # OSX ships with curl and ancient bash # Note: here, sourcing directly from curl does not work diff --git a/themes/one-light.sh b/themes/one-light.sh index d26edca..a610627 100755 --- a/themes/one-light.sh +++ b/themes/one-light.sh @@ -53,11 +53,9 @@ PARENT_PATH="$(dirname "$SCRIPT_PATH")" if [ -e $PARENT_PATH"/apply-colors.sh" ] then -gogh_colors source $PARENT_PATH"/apply-colors.sh" else -gogh_colors if [ $(uname) = "Darwin" ]; then # OSX ships with curl and ancient bash # Note: here, sourcing directly from curl does not work diff --git a/themes/pali.sh b/themes/pali.sh index c076726..43655ed 100755 --- a/themes/pali.sh +++ b/themes/pali.sh @@ -53,11 +53,9 @@ PARENT_PATH="$(dirname "$SCRIPT_PATH")" if [ -e $PARENT_PATH"/apply-colors.sh" ] then -gogh_colors source $PARENT_PATH"/apply-colors.sh" else -gogh_colors if [ $(uname) = "Darwin" ]; then # OSX ships with curl and ancient bash # Note: here, sourcing directly from curl does not work diff --git a/themes/paraiso-dark.sh b/themes/paraiso-dark.sh index b12a98d..53a56aa 100755 --- a/themes/paraiso-dark.sh +++ b/themes/paraiso-dark.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/paul-millr.sh b/themes/paul-millr.sh index 258865f..24956ff 100755 --- a/themes/paul-millr.sh +++ b/themes/paul-millr.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/pencil-dark.sh b/themes/pencil-dark.sh index db579e7..2ab876f 100755 --- a/themes/pencil-dark.sh +++ b/themes/pencil-dark.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/pencil-light.sh b/themes/pencil-light.sh index 58e503b..d4411d4 100755 --- a/themes/pencil-light.sh +++ b/themes/pencil-light.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/peppermint.sh b/themes/peppermint.sh index 77e2b99..87b5a47 100755 --- a/themes/peppermint.sh +++ b/themes/peppermint.sh @@ -53,11 +53,9 @@ PARENT_PATH="$(dirname "$SCRIPT_PATH")" if [ -e $PARENT_PATH"/apply-colors.sh" ] then -gogh_colors source $PARENT_PATH"/apply-colors.sh" else -gogh_colors if [ $(uname) = "Darwin" ]; then # OSX ships with curl and ancient bash # Note: here, sourcing directly from curl does not work diff --git a/themes/pnevma.sh b/themes/pnevma.sh index 800791a..8a12bbb 100755 --- a/themes/pnevma.sh +++ b/themes/pnevma.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/pro.sh b/themes/pro.sh index fc3a69a..59d2362 100755 --- a/themes/pro.sh +++ b/themes/pro.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/red-alert.sh b/themes/red-alert.sh index 002be66..0dd8e97 100755 --- a/themes/red-alert.sh +++ b/themes/red-alert.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/red-sands.sh b/themes/red-sands.sh index 2ef99ce..0008c12 100755 --- a/themes/red-sands.sh +++ b/themes/red-sands.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/rippedcasts.sh b/themes/rippedcasts.sh index 4632bf0..52c25c5 100755 --- a/themes/rippedcasts.sh +++ b/themes/rippedcasts.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/royal.sh b/themes/royal.sh index 1e3307d..824e88b 100755 --- a/themes/royal.sh +++ b/themes/royal.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/sat.sh b/themes/sat.sh index 5da4a35..3305de5 100755 --- a/themes/sat.sh +++ b/themes/sat.sh @@ -53,11 +53,9 @@ PARENT_PATH="$(dirname "$SCRIPT_PATH")" if [ -e $PARENT_PATH"/apply-colors.sh" ] then -gogh_colors source $PARENT_PATH"/apply-colors.sh" else -gogh_colors if [ $(uname) = "Darwin" ]; then # OSX ships with curl and ancient bash # Note: here, sourcing directly from curl does not work diff --git a/themes/sea-shells.sh b/themes/sea-shells.sh index d426940..9b7bb10 100755 --- a/themes/sea-shells.sh +++ b/themes/sea-shells.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/seafoam-pastel.sh b/themes/seafoam-pastel.sh index fc7cce1..8a31caf 100755 --- a/themes/seafoam-pastel.sh +++ b/themes/seafoam-pastel.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/seti.sh b/themes/seti.sh index f3c4332..ce6b286 100755 --- a/themes/seti.sh +++ b/themes/seti.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/shaman.sh b/themes/shaman.sh index f62d98a..14d7bfe 100755 --- a/themes/shaman.sh +++ b/themes/shaman.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/shel.sh b/themes/shel.sh index bb715f0..6aa1062 100755 --- a/themes/shel.sh +++ b/themes/shel.sh @@ -53,11 +53,9 @@ PARENT_PATH="$(dirname "$SCRIPT_PATH")" if [ -e $PARENT_PATH"/apply-colors.sh" ] then -gogh_colors source $PARENT_PATH"/apply-colors.sh" else -gogh_colors if [ $(uname) = "Darwin" ]; then # OSX ships with curl and ancient bash # Note: here, sourcing directly from curl does not work diff --git a/themes/slate.sh b/themes/slate.sh index 056123e..807b526 100755 --- a/themes/slate.sh +++ b/themes/slate.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/smyck.sh b/themes/smyck.sh index cca388a..17901f7 100755 --- a/themes/smyck.sh +++ b/themes/smyck.sh @@ -53,11 +53,9 @@ PARENT_PATH="$(dirname "$SCRIPT_PATH")" if [ -e $PARENT_PATH"/apply-colors.sh" ] then -gogh_colors source $PARENT_PATH"/apply-colors.sh" else -gogh_colors if [ $(uname) = "Darwin" ]; then # OSX ships with curl and ancient bash # Note: here, sourcing directly from curl does not work diff --git a/themes/snazzy.sh b/themes/snazzy.sh index f0245d2..d2ed513 100644 --- a/themes/snazzy.sh +++ b/themes/snazzy.sh @@ -53,11 +53,9 @@ PARENT_PATH="$(dirname "$SCRIPT_PATH")" if [ -e $PARENT_PATH"/apply-colors.sh" ] then -gogh_colors source $PARENT_PATH"/apply-colors.sh" else -gogh_colors if [ $(uname) = "Darwin" ]; then # OSX ships with curl and ancient bash # Note: here, sourcing directly from curl does not work diff --git a/themes/soft-server.sh b/themes/soft-server.sh index 394327e..58e21dc 100755 --- a/themes/soft-server.sh +++ b/themes/soft-server.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/solarized-darcula.sh b/themes/solarized-darcula.sh index 4b8a723..ead8e03 100755 --- a/themes/solarized-darcula.sh +++ b/themes/solarized-darcula.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/solarized-dark-higher-contrast.sh b/themes/solarized-dark-higher-contrast.sh index a8fc74a..b7fa431 100755 --- a/themes/solarized-dark-higher-contrast.sh +++ b/themes/solarized-dark-higher-contrast.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/solarized-dark.sh b/themes/solarized-dark.sh index 65fc9e8..8e5e091 100755 --- a/themes/solarized-dark.sh +++ b/themes/solarized-dark.sh @@ -54,11 +54,9 @@ PARENT_PATH="$(dirname "$SCRIPT_PATH")" if [ -e $PARENT_PATH"/apply-colors.sh" ] then -gogh_colors source $PARENT_PATH"/apply-colors.sh" else -gogh_colors if [ $(uname) = "Darwin" ]; then # OSX ships with curl and ancient bash # Note: here, sourcing directly from curl does not work diff --git a/themes/solarized-light.sh b/themes/solarized-light.sh index bd8d069..cf7e530 100755 --- a/themes/solarized-light.sh +++ b/themes/solarized-light.sh @@ -54,11 +54,9 @@ PARENT_PATH="$(dirname "$SCRIPT_PATH")" if [ -e $PARENT_PATH"/apply-colors.sh" ] then -gogh_colors source $PARENT_PATH"/apply-colors.sh" else -gogh_colors if [ $(uname) = "Darwin" ]; then # OSX ships with curl and ancient bash # Note: here, sourcing directly from curl does not work diff --git a/themes/spacedust.sh b/themes/spacedust.sh index f8f51ab..75ff498 100755 --- a/themes/spacedust.sh +++ b/themes/spacedust.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/spacegray-eighties-dull.sh b/themes/spacegray-eighties-dull.sh index 0f8cb66..e40cbe1 100755 --- a/themes/spacegray-eighties-dull.sh +++ b/themes/spacegray-eighties-dull.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/spacegray-eighties.sh b/themes/spacegray-eighties.sh index e968995..3e8d0ae 100755 --- a/themes/spacegray-eighties.sh +++ b/themes/spacegray-eighties.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/spacegray.sh b/themes/spacegray.sh index f31e2a4..b23885e 100755 --- a/themes/spacegray.sh +++ b/themes/spacegray.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/spring.sh b/themes/spring.sh index 66e1d2a..265230f 100755 --- a/themes/spring.sh +++ b/themes/spring.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/square.sh b/themes/square.sh index 49a8874..41e6e82 100755 --- a/themes/square.sh +++ b/themes/square.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/srcery.sh b/themes/srcery.sh index 2c1cb9d..3002354 100755 --- a/themes/srcery.sh +++ b/themes/srcery.sh @@ -53,11 +53,9 @@ PARENT_PATH="$(dirname "$SCRIPT_PATH")" if [ -e $PARENT_PATH"/apply-colors.sh" ] then -gogh_colors source $PARENT_PATH"/apply-colors.sh" else -gogh_colors if [ $(uname) = "Darwin" ]; then # OSX ships with curl and ancient bash # Note: here, sourcing directly from curl does not work diff --git a/themes/sundried.sh b/themes/sundried.sh index d904349..4e3222c 100755 --- a/themes/sundried.sh +++ b/themes/sundried.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/symphonic.sh b/themes/symphonic.sh index 3f2afda..0b70fef 100755 --- a/themes/symphonic.sh +++ b/themes/symphonic.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/teerb.sh b/themes/teerb.sh index e22a026..2bf31ea 100755 --- a/themes/teerb.sh +++ b/themes/teerb.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/terminal-basic.sh b/themes/terminal-basic.sh index 0ffe2d3..a92e3b6 100755 --- a/themes/terminal-basic.sh +++ b/themes/terminal-basic.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/terminix-dark.sh b/themes/terminix-dark.sh index 4fd598d..958cc58 100755 --- a/themes/terminix-dark.sh +++ b/themes/terminix-dark.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/thayer-bright.sh b/themes/thayer-bright.sh index b3c603c..3ca1d5f 100755 --- a/themes/thayer-bright.sh +++ b/themes/thayer-bright.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/tin.sh b/themes/tin.sh index 0c67f66..ba3d584 100755 --- a/themes/tin.sh +++ b/themes/tin.sh @@ -53,11 +53,9 @@ PARENT_PATH="$(dirname "$SCRIPT_PATH")" if [ -e $PARENT_PATH"/apply-colors.sh" ] then -gogh_colors source $PARENT_PATH"/apply-colors.sh" else -gogh_colors if [ $(uname) = "Darwin" ]; then # OSX ships with curl and ancient bash # Note: here, sourcing directly from curl does not work diff --git a/themes/tomorrow-night-blue.sh b/themes/tomorrow-night-blue.sh index 25cab9b..53fcbee 100755 --- a/themes/tomorrow-night-blue.sh +++ b/themes/tomorrow-night-blue.sh @@ -53,11 +53,9 @@ PARENT_PATH="$(dirname "$SCRIPT_PATH")" if [ -e $PARENT_PATH"/apply-colors.sh" ] then -gogh_colors source $PARENT_PATH"/apply-colors.sh" else -gogh_colors if [ $(uname) = "Darwin" ]; then # OSX ships with curl and ancient bash # Note: here, sourcing directly from curl does not work diff --git a/themes/tomorrow-night-bright.sh b/themes/tomorrow-night-bright.sh index 3fc2d96..6822362 100755 --- a/themes/tomorrow-night-bright.sh +++ b/themes/tomorrow-night-bright.sh @@ -53,11 +53,9 @@ PARENT_PATH="$(dirname "$SCRIPT_PATH")" if [ -e $PARENT_PATH"/apply-colors.sh" ] then -gogh_colors source $PARENT_PATH"/apply-colors.sh" else -gogh_colors if [ $(uname) = "Darwin" ]; then # OSX ships with curl and ancient bash # Note: here, sourcing directly from curl does not work diff --git a/themes/tomorrow-night-eighties.sh b/themes/tomorrow-night-eighties.sh index 3569a18..25d4e6c 100755 --- a/themes/tomorrow-night-eighties.sh +++ b/themes/tomorrow-night-eighties.sh @@ -53,11 +53,9 @@ PARENT_PATH="$(dirname "$SCRIPT_PATH")" if [ -e $PARENT_PATH"/apply-colors.sh" ] then -gogh_colors source $PARENT_PATH"/apply-colors.sh" else -gogh_colors if [ $(uname) = "Darwin" ]; then # OSX ships with curl and ancient bash # Note: here, sourcing directly from curl does not work diff --git a/themes/tomorrow-night.sh b/themes/tomorrow-night.sh index 158466e..20831c6 100755 --- a/themes/tomorrow-night.sh +++ b/themes/tomorrow-night.sh @@ -53,11 +53,9 @@ PARENT_PATH="$(dirname "$SCRIPT_PATH")" if [ -e $PARENT_PATH"/apply-colors.sh" ] then -gogh_colors source $PARENT_PATH"/apply-colors.sh" else -gogh_colors if [ $(uname) = "Darwin" ]; then # OSX ships with curl and ancient bash # Note: here, sourcing directly from curl does not work diff --git a/themes/tomorrow.sh b/themes/tomorrow.sh index 368395b..18d22c3 100755 --- a/themes/tomorrow.sh +++ b/themes/tomorrow.sh @@ -53,11 +53,9 @@ PARENT_PATH="$(dirname "$SCRIPT_PATH")" if [ -e $PARENT_PATH"/apply-colors.sh" ] then -gogh_colors source $PARENT_PATH"/apply-colors.sh" else -gogh_colors if [ $(uname) = "Darwin" ]; then # OSX ships with curl and ancient bash # Note: here, sourcing directly from curl does not work diff --git a/themes/toy-chest.sh b/themes/toy-chest.sh index 126be37..305ccfb 100755 --- a/themes/toy-chest.sh +++ b/themes/toy-chest.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/treehouse.sh b/themes/treehouse.sh index 1054f8f..4fdebd9 100755 --- a/themes/treehouse.sh +++ b/themes/treehouse.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/twilight.sh b/themes/twilight.sh index dc6d76f..e0d2976 100755 --- a/themes/twilight.sh +++ b/themes/twilight.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/ura.sh b/themes/ura.sh index 57d721e..2c46b02 100755 --- a/themes/ura.sh +++ b/themes/ura.sh @@ -53,11 +53,9 @@ PARENT_PATH="$(dirname "$SCRIPT_PATH")" if [ -e $PARENT_PATH"/apply-colors.sh" ] then -gogh_colors source $PARENT_PATH"/apply-colors.sh" else -gogh_colors if [ $(uname) = "Darwin" ]; then # OSX ships with curl and ancient bash # Note: here, sourcing directly from curl does not work diff --git a/themes/urple.sh b/themes/urple.sh index 1798fda..142d4e9 100755 --- a/themes/urple.sh +++ b/themes/urple.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/vag.sh b/themes/vag.sh index 9003353..1ff49af 100755 --- a/themes/vag.sh +++ b/themes/vag.sh @@ -51,14 +51,10 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -if [ -e $PARENT_PATH"/apply-colors.sh" ] -then -gogh_colors -source $PARENT_PATH"/apply-colors.sh" - +if [ -e $PARENT_PATH"/apply-colors.sh" ]; then + source $PARENT_PATH"/apply-colors.sh" else -gogh_colors - if [ $(uname) = "Darwin" ]; then + if [ $(uname) = "Darwin" ]; then # OSX ships with curl and ancient bash # Note: here, sourcing directly from curl does not work curlsource https://raw.githubusercontent.com/Mayccoll/Gogh/master/apply-colors.sh diff --git a/themes/vaughn.sh b/themes/vaughn.sh index 837de3c..e538378 100755 --- a/themes/vaughn.sh +++ b/themes/vaughn.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/vibrant-ink.sh b/themes/vibrant-ink.sh index cd1c30f..e1b1df5 100755 --- a/themes/vibrant-ink.sh +++ b/themes/vibrant-ink.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/warm-neon.sh b/themes/warm-neon.sh index c778930..2922b62 100755 --- a/themes/warm-neon.sh +++ b/themes/warm-neon.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/wez.sh b/themes/wez.sh index fa37540..7958362 100755 --- a/themes/wez.sh +++ b/themes/wez.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/wild-cherry.sh b/themes/wild-cherry.sh index d1ce120..35499f9 100755 --- a/themes/wild-cherry.sh +++ b/themes/wild-cherry.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/wombat.sh b/themes/wombat.sh index 77dfa94..543e65e 100755 --- a/themes/wombat.sh +++ b/themes/wombat.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/wryan.sh b/themes/wryan.sh index b98c044..f08093c 100755 --- a/themes/wryan.sh +++ b/themes/wryan.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else diff --git a/themes/zenburn.sh b/themes/zenburn.sh index 44454ee..a9ca5e3 100755 --- a/themes/zenburn.sh +++ b/themes/zenburn.sh @@ -51,7 +51,6 @@ function curlsource() { SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PARENT_PATH="$(dirname "$SCRIPT_PATH")" -gogh_colors if [ -e $PARENT_PATH"/apply-colors.sh" ]; then source $PARENT_PATH"/apply-colors.sh" else