1
0
mirror of https://github.com/Mayccoll/Gogh.git synced 2023-08-10 21:12:46 +03:00
Gogh/themes/aco.sh
Louis Taylor 683294140c Do not hardcode path to bash interpreter
I am unable to use these scripts on NixOS, since the bash interpreter is
in a different location to more conventional distros. Currently is is
/nix/store/jlg2n512jxnr1lxs72r1frxqdsf7jpdj-system-path/bin/bash on my
machine.

This patch uses env to find the correct path to the interpreter.
2016-05-21 16:03:59 +01:00

32 lines
1.0 KiB
Bash
Executable File

#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
COLOR_01="#3f3f3f" # HOST
COLOR_02="#ff0883" # SYNTAX_STRING
COLOR_03="#83ff08" # COMMAND
COLOR_04="#ff8308" # COMMAND_COLOR2
COLOR_05="#0883ff" # PATH
COLOR_06="#8308ff" # SYNTAX_VAR
COLOR_07="#08ff83" # PROMP
COLOR_08="#bebebe" #
COLOR_09="#474747" #
COLOR_10="#ff1e8e" # COMMAND_ERROR
COLOR_11="#8eff1e" # EXEC
COLOR_12="#ff8e1e" #
COLOR_13="#1e8eff" # FOLDER
COLOR_14="#8e1eff" #
COLOR_15="#1eff8e" #
COLOR_16="#c4c4c4" #
BACKGROUND_COLOR="#1f1305" # Background Color
FOREGROUND_COLOR="#b4e1fd" # Text
CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor
# =============================================================== #
# |
# | Apply Colors
# | ===========================================
source $(cd "$(dirname "$(readlink -f "$0")")" && pwd)/../_apply-colors.sh || \
source <(wget -O - http://git.io/vY8Qq)