-
Notifications
You must be signed in to change notification settings - Fork 100
/
boxes.sh
executable file
·89 lines (83 loc) · 2.39 KB
/
boxes.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
#!/bin/bash
#
# NAME
#
# boxes.sh [-c] [-n] [<textColor>]
#
# ARGS
#
# [-c]
#
# Move the cursor to the front of the line,
# and clear the current and previous lines.
#
# [-n]
#
# Print decorations with no color.
#
# DESC
#
# Draws left and right "box" outlines for a string of text
# in line by line fashion -- useful to create the "body" of
# a box of text, for example:
#
# │ Here is some text that │▒
# │ is created in a box of │▒
# │ some fixed width, with │▒
# │ a shadow effect also! │▒
#
. ./decorate.sh
let width=80
let b_clear=0
let b_noLineColor=0
while getopts "cn" opt; do
case $opt in
c) b_clear=1;;
n) b_noLineColor=1;;
esac
done
shift "$((OPTIND-1))"
Color=$(echo "$*" | xargs)
# Set the default line color
if (( $# != 1 )) ; then
set -- ${White}
fi
# Grab the default or CLI passed color
lineColor=""
if (( ${#Color} )) ; then
case "$Color" in
Black) lineColor='\033[0;30m' ;;
DarkGray) lineColor='\033[1;30m' ;;
Red) lineColor='\033[0;31m' ;;
LightRed) lineColor='\033[1;31m' ;;
Green) lineColor='\033[0;32m' ;;
LightGreen) lineColor='\033[1;32m' ;;
Brown) lineColor='\033[0;33m' ;;
Yellow) lineColor='\033[1;33m' ;;
Blue) lineColor='\033[0;34m' ;;
LightBlue) lineColor='\033[1;34m' ;;
Purple) lineColor='\033[0;35m' ;;
LightPurple) lineColor='\033[1;35m' ;;
Cyan) lineColor='\033[0;36m' ;;
LightCyan) lineColor='\033[1;36m' ;;
LightGray) lineColor='\033[0;37m' ;;
White) lineColor='\033[1;37m' ;;
esac
fi
if ((b_clear)) ; then
echo -en "\033[2A\033[2K"
fi
while IFS= read line; do
line="$(echo -e "${line}" | sed -e 's/[[:space:]]*$//')"
LINELEN=${#line}
TRAILLEN=$(( $width - $LINELEN ))
PADDING=""
if (( TRAILLEN > 0 )) ; then
PADDING=$(head -c $TRAILLEN < /dev/zero | tr '\0' ' ')
fi
if (( ! b_noLineColor )) ; then
printf "${Yellow}│${lineColor}${line}${PADDING}${NC}${Yellow}│${Brown}▒${NC}\n"
else
printf "│${line}${PADDING}${NC}│▒${NC}\n"
fi
done