Initial directory structure, colors library

This commit is contained in:
belliash 2011-12-26 12:45:52 +01:00
parent 90b61289b6
commit 3c7ba1dd8a
6 changed files with 31 additions and 0 deletions

0
config/ezbuild.conf Normal file
View File

0
config/ezsync.conf Normal file
View File

0
config/layout.conf Normal file
View File

1
ezbuild Executable file
View File

@ -0,0 +1 @@
#!/bin/bash

1
ezsync Executable file
View File

@ -0,0 +1 @@
#!/bin/bash

29
libraries/colors Normal file
View File

@ -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}"