diff --git a/colors.inc b/colors.inc index c16d444..3505420 100755 --- a/colors.inc +++ b/colors.inc @@ -1,3 +1,5 @@ +#!/usr/bin/env bash + declare -A CS CS[color,Default]="\e[39m" CS[color,Black]="\e[30m" diff --git a/test.sh b/test.sh index 8213a14..ba37807 100755 --- a/test.sh +++ b/test.sh @@ -1,6 +1,6 @@ -#!/bin/bash +#!/usr/bin/env bash -curl -sL https://git.schroedercity.com/voltron/Misc-Scripts/raw/master/colors.inc +source https://git.schroedercity.com/voltron/Misc-Scripts/raw/master/colors.inc echo -e "${CS[color,LightBlue]}Testing TESTING ${CS[style,Bold]}REALLY TESTING${CS[style,Reset]}${CS[color,Default]}"