-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbanner.sh
118 lines (103 loc) · 3.87 KB
/
banner.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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
#!/bin/bash
generate_infocyph_header() {
local title="${1:-LOCALDOCK}"
local describe=" ${2:-DESCRIBE} "
# Generate figlet output for the title
local figlet_output
figlet_output=$(figlet -f standard "$title")
# Compute maximum length of figlet output lines
local figlet_width=0
while IFS= read -r line; do
local len=${#line}
(( len > figlet_width )) && figlet_width=$len
done <<< "$figlet_output"
# Prepare Credit Information
local credits=(
"© Infocyph. Innovation at its core."
"© Infocyph. Powered by passion."
"© Infocyph. Crafting excellence."
"© Infocyph. Unleashing creativity."
"© Infocyph. Where ideas come to life."
)
local selected_credit="${credits[$RANDOM % ${#credits[@]}]}"
local credit_length=${#selected_credit}
# Prepare DESCRIBE Box
local box_text="$describe"
local box_text_length=${#box_text}
local box_width=$(( box_text_length + 2 )) # plus vertical borders
# Determine Overall Width:
# Overall width is the maximum of figlet_width, credit_length, and box_width.
local overall_width=$figlet_width
(( credit_length > overall_width )) && overall_width=$credit_length
(( box_width > overall_width )) && overall_width=$box_width
# Center-align Figlet Output using an array
local centered_figlet=""
local -a figlet_lines
while IFS= read -r line; do
local line_length=${#line}
local pad_total=$(( overall_width - line_length ))
local left_pad=$(( pad_total / 2 ))
local right_pad=$(( pad_total - left_pad ))
local left_spaces
left_spaces=$(printf '%*s' "$left_pad" "")
local right_spaces
right_spaces=$(printf '%*s' "$right_pad" "")
figlet_lines+=("${left_spaces}${line}${right_spaces}")
done <<< "$figlet_output"
centered_figlet=$(printf "%s\n" "${figlet_lines[@]}")
# Optionally remove a trailing newline:
centered_figlet=$(echo -n "$centered_figlet")
# Build DESCRIBE Box with dash padding for the middle line only
local box_top=""
local box_mid=""
local box_bot=""
if (( box_width > overall_width )); then
box_mid="$box_text"
else
local left_padding_box=$(( (overall_width - box_width) / 2 ))
local right_padding_box=$(( overall_width - box_width - left_padding_box ))
# For top and bottom borders, use space padding for left/right
local space_pad_left
space_pad_left=$(printf '%*s' "$left_padding_box" "")
local space_pad_right
space_pad_right=$(printf '%*s' "$right_padding_box" "")
# For the middle line, use dash padding on the sides
local dash_pad_left
dash_pad_left=$(printf '%*s' "$left_padding_box" "" | tr ' ' '-')
local dash_pad_right
dash_pad_right=$(printf '%*s' "$right_padding_box" "" | tr ' ' '-')
local horizontal_line
horizontal_line=$(printf '%*s' "$box_text_length" "" | tr ' ' '-')
box_top="${space_pad_left}+${horizontal_line}+${space_pad_right}"
box_mid="${dash_pad_left}|${box_text}|${dash_pad_right}"
box_bot="${space_pad_left}+${horizontal_line}+${space_pad_right}"
fi
# Center-align the Credit
local centered_credit=""
if (( credit_length >= overall_width )); then
centered_credit="$selected_credit"
else
local left_spaces=$(( (overall_width - credit_length) / 2 ))
local right_spaces=$(( overall_width - credit_length - left_spaces ))
local left_pad
left_pad=$(printf '%*s' "$left_spaces" "")
local right_pad
right_pad=$(printf '%*s' "$right_spaces" "")
centered_credit="${left_pad}${selected_credit}${right_pad}"
fi
# Assemble Final Output
if [ -n "$box_top" ] && [ -n "$box_mid" ] && [ -n "$box_bot" ]; then
printf "%b\n%s\n%s\n%s\n%s\n" \
"$centered_figlet" \
"$box_top" \
"$box_mid" \
"$box_bot" \
"$centered_credit"
else
printf "%b\n%s\n%s\n" \
"$centered_figlet" \
"$box_mid" \
"$centered_credit"
fi | boxes -d parchment -a hcvc | lolcat
}
generate_infocyph_header "$@"