- Reordered the $screen check function in pre-root part of install() to avoid unnecessary code execution in case the program exists early due to $screen error if ultrawide is selected with Slazy

- Minor grammatical error fixes
This commit is contained in:
Nurverek 2020-11-10 16:04:12 +03:30
parent d005d49168
commit f4b1a85ab0

View File

@ -91,17 +91,17 @@ install() {
local screen="1080p"
fi
if [[ ${screen} == '1080p_21:9' && ${name} == 'Slaze' ]]; then
prompt -e "ultrawide 1080p does not support Slaze theme"
exit 1
fi
if [[ ${custom_background} == 'custom-background' ]]; then
local custom_background="custom-background"
else
local custom_background="default-background"
fi
if [[ ${screen} == '1080p_21:9' && ${name} == 'Slaze' ]]; then
prompt -e "ultrawide 1080p does not support Slaze theme"
exit 1
fi
if [[ ${icon} == 'white' ]]; then
local icon="white"
else
@ -110,6 +110,7 @@ install() {
# Check for root access and proceed if it is present
if [ "$UID" -eq "$ROOT_UID" ]; then
clear
if [[ "${custom_background}" == "custom-background" ]]; then