2016-05-21 18:03:59 +03:00
|
|
|
#!/usr/bin/env bash
|
2015-08-14 19:05:35 +03:00
|
|
|
|
|
|
|
# ====================CONFIG THIS =============================== #
|
|
|
|
COLOR_01="#000000"
|
|
|
|
COLOR_02="#D54E53"
|
|
|
|
COLOR_03="#B9CA49"
|
|
|
|
COLOR_04="#E7C547"
|
|
|
|
COLOR_05="#79A6DA"
|
|
|
|
COLOR_06="#C397D8"
|
|
|
|
COLOR_07="#70C0B1"
|
|
|
|
COLOR_08="#FFFEFE"
|
|
|
|
|
|
|
|
COLOR_09="#000000"
|
|
|
|
COLOR_10="#D44D53"
|
|
|
|
COLOR_11="#B9C949"
|
|
|
|
COLOR_12="#E6C446"
|
|
|
|
COLOR_13="#79A6DA"
|
|
|
|
COLOR_14="#C396D7"
|
|
|
|
COLOR_15="#70C0B1"
|
|
|
|
COLOR_16="#FFFEFE"
|
|
|
|
|
|
|
|
BACKGROUND_COLOR="#000000"
|
|
|
|
FOREGROUND_COLOR="#E9E9E9"
|
|
|
|
CURSOR_COLOR="#E9E9E9"
|
|
|
|
# =============================================================== #
|
|
|
|
|
|
|
|
# |
|
|
|
|
# | Apply Colors
|
|
|
|
# | ===========================================
|
2016-03-19 18:40:48 +03:00
|
|
|
source $(cd "$(dirname "$(readlink -f "$0")")" && pwd)/../_apply-colors.sh || \
|
|
|
|
source <(wget -O - http://git.io/vY8Qq)
|