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
733 B
Bash
Executable File
32 lines
733 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# ====================CONFIG THIS =============================== #
|
|
COLOR_01="#000000"
|
|
COLOR_02="#C82828"
|
|
COLOR_03="#718C00"
|
|
COLOR_04="#EAB700"
|
|
COLOR_05="#4171AE"
|
|
COLOR_06="#8959A8"
|
|
COLOR_07="#3E999F"
|
|
COLOR_08="#FFFEFE"
|
|
|
|
COLOR_09="#000000"
|
|
COLOR_10="#C82828"
|
|
COLOR_11="#708B00"
|
|
COLOR_12="#E9B600"
|
|
COLOR_13="#4170AE"
|
|
COLOR_14="#8958A7"
|
|
COLOR_15="#3D999F"
|
|
COLOR_16="#FFFEFE"
|
|
|
|
BACKGROUND_COLOR="#FFFFFF"
|
|
FOREGROUND_COLOR="#4D4D4C"
|
|
CURSOR_COLOR="#4C4C4C"
|
|
# =============================================================== #
|
|
|
|
# |
|
|
# | Apply Colors
|
|
# | ===========================================
|
|
source $(cd "$(dirname "$(readlink -f "$0")")" && pwd)/../_apply-colors.sh || \
|
|
source <(wget -O - http://git.io/vY8Qq)
|