Skip to content

Commit

Permalink
Fixed install.sh
Browse files Browse the repository at this point in the history
Forgot to update install.sh
  • Loading branch information
Jannomag committed May 8, 2021
1 parent f0c9816 commit 078c884
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ RUSER_UID=$(id -u ${RUID})
#### Function for package color selection
package_color_menu () {
select package_color in "${@}"; do
if [ 1 -le "$REPLY" ] && [ "$REPLY" -le $(($#-1)) ]; then
if [ 1 -le "$REPLY" ] && [ "$REPLY" -le $(($#)) ]; then
echo -e "${Yel}Okay, '$package_color' is set!${RCol}"
break;
else
Expand All @@ -143,7 +143,7 @@ package_color_menu () {
#### Function for icon color selection
icon_color_menu () {
select icon_color in "${@}"; do
if [ 1 -le "$REPLY" ] && [ "$REPLY" -le $(($#-1)) ]; then
if [ 1 -le "$REPLY" ] && [ "$REPLY" -le $(($#)) ]; then
echo -e "${Yel}Okay, '$icon_color' is set for the icons!${RCol}"
break;
else
Expand Down Expand Up @@ -172,7 +172,7 @@ icon_color_menu () {


# The color array - THIS revolutionized my old script...I can add colors as much as I want, if they're present as themes...nice
colors=(Amber Aqua Blue Brown Cinnamon Deepblue Green Grey MATE Pink Purple Orange Red Teal Yellow)
colors=(Amber Aqua Aubergine Blue Brown Cinnamon Deepblue Green Grey Lavender MATE Pink Purple Orange Red Teal Yellow)



Expand Down

0 comments on commit 078c884

Please sign in to comment.