From 3c7ba1dd8ae8cd5dfe9a62b09434b94b032dbd0c Mon Sep 17 00:00:00 2001 From: belliash Date: Mon, 26 Dec 2011 12:45:52 +0100 Subject: [PATCH] Initial directory structure, colors library --- config/ezbuild.conf | 0 config/ezsync.conf | 0 config/layout.conf | 0 ezbuild | 1 + ezsync | 1 + libraries/colors | 29 +++++++++++++++++++++++++++++ 6 files changed, 31 insertions(+) create mode 100644 config/ezbuild.conf create mode 100644 config/ezsync.conf create mode 100644 config/layout.conf create mode 100755 ezbuild create mode 100755 ezsync create mode 100644 libraries/colors diff --git a/config/ezbuild.conf b/config/ezbuild.conf new file mode 100644 index 0000000..e69de29 diff --git a/config/ezsync.conf b/config/ezsync.conf new file mode 100644 index 0000000..e69de29 diff --git a/config/layout.conf b/config/layout.conf new file mode 100644 index 0000000..e69de29 diff --git a/ezbuild b/ezbuild new file mode 100755 index 0000000..a9bf588 --- /dev/null +++ b/ezbuild @@ -0,0 +1 @@ +#!/bin/bash diff --git a/ezsync b/ezsync new file mode 100755 index 0000000..a9bf588 --- /dev/null +++ b/ezsync @@ -0,0 +1 @@ +#!/bin/bash diff --git a/libraries/colors b/libraries/colors new file mode 100644 index 0000000..da77c82 --- /dev/null +++ b/libraries/colors @@ -0,0 +1,29 @@ +#!/bin/bash + +#------------------------------------------------------------------------------- +# Message Color Definitions +#------------------------------------------------------------------------------- +COLOR_NORMAL="\033[0m" +COLOR_BOLD="\033[1m" +COLOR_UNDERLINE="\033[4m" +COLOR_REVERSE="\033[7m" +COLOR_HIDDEN="\033[8m" + +COLOR_BLACK="\033[30m" +COLOR_RED="\033[31m" +COLOR_GREEN="\033[32m" +COLOR_YELLOW="\033[33m" +COLOR_BLUE="\033[34m" +COLOR_VIOLET="\033[35m" +COLOR_CYAN="\033[36m" +COLOR_WHITE="\033[37m" + +#------------------------------------------------------------------------------- +# Special Element Definitions +#------------------------------------------------------------------------------- +ARROW_LEFT="${BOLD}${YELLOW}<${NORMAL}${WHITE}" +ARROW_RIGHT="${BOLD}${YELLOW}>${NORMAL}${WHITE}" + +BORDER_DD="${BOLD}================================================================================${NORMAL}" +BORDER_SD="${BOLD}--------------------------------------------------------------------------------${NORMAL}" +BORDER_STAR="${BOLD}********************************************************************************${NORMAL}"