From 8a71dbc41609322d2dcdd0d833a80fd94b7d42bc Mon Sep 17 00:00:00 2001 From: Praveen <70476863+Praveen606@users.noreply.github.com> Date: Fri, 1 Oct 2021 14:25:59 +0530 Subject: [PATCH] Update install.sh --- install.sh | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/install.sh b/install.sh index fb9b222..5d810d5 100755 --- a/install.sh +++ b/install.sh @@ -14,7 +14,7 @@ THEME_DIR="/usr/share/grub/themes" REO_DIR="$(cd $(dirname $0) && pwd)" } -THEME_VARIANTS=('tela' 'vimix' 'stylish' 'slaze' 'whitesur') +THEME_VARIANTS=('tela' 'vimix' 'stylish' 'slaze' 'whitesur' 'cool') ICON_VARIANTS=('color' 'white' 'whitesur') SCREEN_VARIANTS=('1080p' '2k' '4k' 'ultrawide' 'ultrawide2k') @@ -263,6 +263,7 @@ run_dialog() { 3) theme="stylish" ;; 4) theme="slaze" ;; 5) theme="whitesur" ;; + 6) theme="cool" ;; *) operation_canceled ;; esac @@ -467,6 +468,10 @@ while [[ $# -gt 0 ]]; do whitesur) themes+=("${THEME_VARIANTS[4]}") shift + ;; + cool) + themes+=("${THEME_VARIANTS[5]}") + shift ;; -*|--*) break