Added bootstrap script start

pull/1/head
John Hammond 2019-10-01 08:52:45 -04:00
parent 16747e3295
commit e633bee5ed
1 changed files with 30 additions and 0 deletions

30
bootstrap.sh Executable file
View File

@ -0,0 +1,30 @@
# Arch Linux Bootstrap script
#
# Author: John Hammond
# Date: October 1st, 2019
#
# This script is meant to help set up and install all the tools
# and configuration that I need to get Arch Linux up and running
# quickly and easily.
# Define some colors for quick use...
COLOR_RED=$(tput setaf 1)
COLOR_GREEN=$(tput setaf 2)
COLOR_YELLOW=$(tput setaf 3)
COLOR_BLUE=$(tput setaf 4)
COLOR_MAGENTA=$(tput setaf 5)
COLOR_CYAN=$(tput setaf 6)
COLOR_WHITE=$(tput setaf 7)
BOLD=$(tput bold)
COLOR_RESET=$(tput sgr0)
function echo_red(){
echo "${COLOR_RED}${BOLD}$1${COLOR_RESET}i"
}
function echo_green(){
echo "${COLOR_GREEN}${BOLD}$1${COLOR_RESET}"
}
echo_green "Hello everyone"