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.1 KiB
Bash
Executable File
32 lines
1.1 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# ==================== CONFIG THIS ========================================= #
|
|
COLOR_01="#073642" # HOST
|
|
COLOR_02="#dc322f" # SYNTAX_STRING
|
|
COLOR_03="#859900" # COMMAND
|
|
COLOR_04="#b58900" # COMMAND_COLOR2
|
|
COLOR_05="#268bd2" # PATH
|
|
COLOR_06="#ec0048" # SYNTAX_VAR
|
|
COLOR_07="#2aa198" # PROMP
|
|
COLOR_08="#94a3a5"
|
|
|
|
COLOR_09="#586e75"
|
|
COLOR_10="#cb4b16" # COMMAND_ERROR
|
|
COLOR_11="#859900" # EXEC
|
|
COLOR_12="#b58900"
|
|
COLOR_13="#268bd2" # FOLDER
|
|
COLOR_14="#d33682"
|
|
COLOR_15="#2aa198"
|
|
COLOR_16="#6c71c4"
|
|
|
|
BACKGROUND_COLOR="#252e32" # Background Color
|
|
FOREGROUND_COLOR="#94a3a5" # Text
|
|
CURSOR_COLOR="#839496" # Cursor
|
|
# ===================== END CONFIG ======================================= #
|
|
|
|
# |
|
|
# | Apply Colors
|
|
# | ===========================================
|
|
source $(cd "$(dirname "$(readlink -f "$0")")" && pwd)/../_apply-colors.sh || \
|
|
source <(wget -O - http://git.io/vY8Qq)
|