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="#CC6666"
|
|
COLOR_03="#B5BD68"
|
|
COLOR_04="#F0C674"
|
|
COLOR_05="#81A2BE"
|
|
COLOR_06="#B293BB"
|
|
COLOR_07="#8ABEB7"
|
|
COLOR_08="#FFFEFE"
|
|
|
|
COLOR_09="#000000"
|
|
COLOR_10="#CC6666"
|
|
COLOR_11="#B5BD68"
|
|
COLOR_12="#F0C574"
|
|
COLOR_13="#80A1BD"
|
|
COLOR_14="#B294BA"
|
|
COLOR_15="#8ABDB6"
|
|
COLOR_16="#FFFEFE"
|
|
|
|
BACKGROUND_COLOR="#1D1F21"
|
|
FOREGROUND_COLOR="#C5C8C6"
|
|
CURSOR_COLOR="#C4C8C5"
|
|
# =============================================================== #
|
|
|
|
# |
|
|
# | Apply Colors
|
|
# | ===========================================
|
|
source $(cd "$(dirname "$(readlink -f "$0")")" && pwd)/../_apply-colors.sh || \
|
|
source <(wget -O - http://git.io/vY8Qq)
|