mirror of
https://github.com/Mayccoll/Gogh.git
synced 2023-08-10 21:12:46 +03:00
683294140c
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.
32 lines
1.0 KiB
Bash
Executable File
32 lines
1.0 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# ====================CONFIG THIS =============================== #
|
|
COLOR_01="#303030" # HOST
|
|
COLOR_02="#e1321a" # SYNTAX_STRING
|
|
COLOR_03="#6ab017" # COMMAND
|
|
COLOR_04="#ffc005" # COMMAND_COLOR2
|
|
COLOR_05="#729FCF" # PATH
|
|
COLOR_06="#ec0048" # SYNTAX_VAR
|
|
COLOR_07="#2aa7e7" # PROMP
|
|
COLOR_08="#f2f2f2" #
|
|
|
|
COLOR_09="#5d5d5d" #
|
|
COLOR_10="#ff361e" # COMMAND_ERROR
|
|
COLOR_11="#7bc91f" # EXEC
|
|
COLOR_12="#ffd00a" #
|
|
COLOR_13="#0071ff" # FOLDER
|
|
COLOR_14="#ff1d62" #
|
|
COLOR_15="#4bb8fd" #
|
|
COLOR_16="#a020f0" #
|
|
|
|
BACKGROUND_COLOR="#041A3B" # Background Color
|
|
FOREGROUND_COLOR="#f2f2f2" # 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)
|