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="#646464" # HOST
|
|
COLOR_02="#F58E8E" # SYNTAX_STRING
|
|
COLOR_03="#A9D3AB" # COMMAND
|
|
COLOR_04="#FED37E" # COMMAND_COLOR2
|
|
COLOR_05="#7AABD4" # PATH
|
|
COLOR_06="#D6ADD5" # SYNTAX_VAR
|
|
COLOR_07="#79D4D5" # PROMP
|
|
COLOR_08="#D4D4D4" #
|
|
|
|
COLOR_09="#646464" #
|
|
COLOR_10="#F58E8E" # COMMAND_ERROR
|
|
COLOR_11="#A9D3AB" # EXEC
|
|
COLOR_12="#FED37E" #
|
|
COLOR_13="#7AABD4" # FOLDER
|
|
COLOR_14="#D6ADD5" #
|
|
COLOR_15="#79D4D5" #
|
|
COLOR_16="#D4D4D4" #
|
|
|
|
BACKGROUND_COLOR="#2D2D2D" # Background Color
|
|
FOREGROUND_COLOR="#D4D4D4" # 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)
|