Skip to content

Commit

Permalink
Merge branch 'release/0.1.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
arcticicestudio committed Dec 24, 2016
2 parents 8153a68 + 3897d82 commit 2b04eff
Show file tree
Hide file tree
Showing 3 changed files with 201 additions and 0 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,15 @@

---

# 0.1.0 (2016-12-24)
## Features
Implemented the main color config file [`config`](https://github.com/arcticicestudio/nord-termite/blob/develop/src/config). (@arcticicestudio, #1, 6fbfd095)

Implementd a [`install.sh`](https://github.com/arcticicestudio/nord-termite/blob/develop/install.sh) shell script for an automated installation . (@arcticicestudio, #2, 5104983e)

Detailed information about features and install instructions can be found in the [README](https://github.com/arcticicestudio/nord-termite/blob/develop/README.md#installation) and in the [project wiki](https://github.com/arcticicestudio/nord-termite/wiki).

<p align="center"><img src="https://raw.githubusercontent.com/arcticicestudio/nord-termite/develop/src/assets/scrot-colortest.png"/><br><strong>htop</strong><br><img src="https://raw.githubusercontent.com/arcticicestudio/nord-termite/develop/src/assets/scrot-htop.png"/></p>

# 0.0.0 (2016-12-22)
**Project Initialization**
158 changes: 158 additions & 0 deletions install.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,158 @@
#!/usr/bin/env bash
# ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
# title Install Script +
# project nord-termite +
# repository https://github.com/arcticicestudio/nord-termite +
# author Arctic Ice Studio +
# email development@arcticicestudio.com +
# copyright Copyright (C) 2016 +
# ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
set -e

_ct_error="\e[0;31m"
_ct_success="\e[0;32m"
_ct_warning="\e[0;33m"
_ct_highlight="\e[0;34m"
_ct_primary="\e[0;36m"
_ct="\e[0;37m"
_ctb_subtle="\e[1;30m"
_ctb_error="\e[1;31m"
_ctb_success="\e[1;32m"
_ctb_warning="\e[1;33m"
_ctb_highlight="\e[1;34m"
_ctb_primary="\e[1;36m"
_ctb="\e[1;37m"
_c_reset="\e[0m"

__help() {
printf "${_ctb}Usage: ${_ct_primary}install.sh ${_ctb_subtle}[OPTIONS]\n"
printf " ${_ctb_highlight}-h${_ct},${_ctb_highlight} --help ${_ct}Help\n"
printf " ${_ctb_highlight}-v${_ct},${_ctb_highlight} --verbose ${_ct}Verbose output\n${_ctb_reset}"
printf " ${_ctb_highlight}-g${_ct},${_ctb_highlight} --global \
${_ct}Install global\n${_ctb_reset}"
printf " ${_ctb_highlight}-c${_ct},${_ctb_highlight} --configfile <COLOR_CONFIG_FILE> \
${_ct}Use the specified color config file\n${_ctb_reset}"
}

__cleanup() {
trap '' SIGINT SIGTERM
unset -v _ct_error _ct_success _ct_warning _ct_highlight _ct_primary _ct
unset -v _ctb_error _ctb_success _ctb_warning _ctb_highlight _ctb_primary _ctb _c_reset
unset -v NORD_TERMITE_SCRIPT_OPTS COLOR_CONFIG_FILE VERBOSE GLOBAL_INSTALL LOCAL_INSTALL NORD_TERMITE_VERSION
unset -f __help __cleanup __log_error __log_success __log_warning __log_info
unset -f __validate_file __local_install __global_install
}

__log_error() {
printf "${_ctb_error}[ERROR] ${_ct}$1${_c_reset}\n"
}

__log_success() {
printf "${_ctb_success}[OK] ${_ct}$1${_c_reset}\n"
}

__log_warning() {
printf "${_ctb_warning}[WARN] ${_ct}$1${_c_reset}\n"
}

__log_info() {
printf "${_ctb}[INFO] ${_ct}$1${_c_reset}\n"
}

__summary_success() {
if [ $GLOBAL_INSTALL = true ]; then
__log_success "Global installation completed"
else
__log_success "Local installation completed"
fi
__cleanup
exit 0
}

__summary_error() {
__log_error "An error occurred during the installation!"
__log_error "Exit code: $1"
__cleanup
exit 1
}

__global_install() {
__validate_file
if [ ! -d $GLOBAL_INSTALL_DIR ]; then
sudo mkdir -p $GLOBAL_INSTALL_DIR
if [ $? -eq 0 ]; then
if [ $VERBOSE = true ]; then __log_info "Created global directory $GLOBAL_INSTALL_DIR"; fi
else
__log_error "Could not create global directory $GLOBAL_INSTALL_DIR"
__summary_error 1
fi
fi
sudo cp -f $COLOR_CONFIG_FILE $GLOBAL_INSTALL_DIR/termite.cfg
if [ $? -eq 0 ]; then
if [ $VERBOSE = true ]; then __log_success "Copied color config file to $GLOBAL_INSTALL_DIR"; fi
__summary_success
else
__log_error "Could not copy color config file to $GLOBAL_INSTALL_DIR"
__summary_error 1
fi
}

__local_install() {
__validate_file
if [ ! -d $LOCAL_INSTALL_DIR ]; then
mkdir -p $LOCAL_INSTALL_DIR
if [ $? -eq 0 ]; then
if [ $VERBOSE = true ]; then __log_info "Created local directory $LOCAL_INSTALL_DIR"; fi
else
__log_error "Could not create local directory $LOCAL_INSTALL_DIR"
__summary_error 1
fi
fi
cp -f $COLOR_CONFIG_FILE $LOCAL_INSTALL_DIR
if [ $? -eq 0 ]; then
if [ $VERBOSE = true ]; then __log_success "Copied color config file to $LOCAL_INSTALL_DIR"; fi
__summary_success
else
__log_error "Could not copy color config file to $LOCAL_INSTALL_DIR"
__summary_error 1
fi
}

__validate_file() {
if [ ! -f $COLOR_CONFIG_FILE ]; then
__log_error "Color config file not found: $COLOR_CONFIG_FILE"
__summary_error 1
fi
}

trap "printf '${_ctb_error}User aborted.${_ctb_reset}\n' && exit 1" SIGINT SIGTERM

NORD_TERMITE_SCRIPT_OPTS=`getopt -o vghc: --long verbose,global,help,configfile: -n 'install.sh' -- "$@"`
COLOR_CONFIG_FILE=src/config
VERBOSE=false
GLOBAL_INSTALL=false
LOCAL_INSTALL_DIR=~/.config/termite
GLOBAL_INSTALL_DIR=/etc/xdg
NORD_TERMITE_VERSION=0.1.0

eval set -- "$NORD_TERMITE_SCRIPT_OPTS"
while true; do
case "$1" in
-v | --verbose ) VERBOSE=true; shift ;;
-g | --global ) GLOBAL_INSTALL=true; shift ;;
-h | --help ) __help; exit 0; break ;;
-c | --configfile )
COLOR_CONFIG_FILE="$2"; shift 2 ;;
-- ) shift; break ;;
* ) break ;;
esac
done

if [ $GLOBAL_INSTALL = true ]; then
__global_install
else
__local_install
fi

__cleanup
exit 0
33 changes: 33 additions & 0 deletions src/config
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
# title Nord Termite +
# project nord-termite +
# version 0.1.0 +
# repository https://github.com/arcticicestudio/nord-termite +
# author Arctic Ice Studio +
# email development@arcticicestudio.com +
# copyright Copyright (C) 2016 +
# ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

[colors]
foreground = #D8DEE9
background = #2E3440
foreground_bold = #D8DEE9
cursor = #D8DEE9
highlight = #4C566A

color0 = #3B4252
color1 = #BF616A
color2 = #A3BE8C
color3 = #EBCB8B
color4 = #81A1C1
color5 = #B48EAD
color6 = #88C0D0
color7 = #E5E9F0
color8 = #4C566A
color9 = #BF616A
color10 = #A3BE8C
color11 = #EBCB8B
color12 = #81A1C1
color13 = #B48EAD
color14 = #8FBCBB
color15 = #ECEFF4

0 comments on commit 2b04eff

Please sign in to comment.