|
|
|
|
@ -158,13 +158,13 @@ install() {
|
|
|
|
|
# persisted execution of the script as root
|
|
|
|
|
if [[ -n ${tui_root_login} ]] ; then
|
|
|
|
|
if [[ -n "${theme}" && -n "${screen}" ]]; then
|
|
|
|
|
sudo -S <<< ${tui_root_login} $0 ${ORIGINAL_ARGUMENTS}
|
|
|
|
|
sudo -S <<< ${tui_root_login} $0 --${theme} --${icon} --${screen}
|
|
|
|
|
fi
|
|
|
|
|
else
|
|
|
|
|
read -p "[ Trusted ] Specify the root password : " -t${MAX_DELAY} -s
|
|
|
|
|
[[ -n "$REPLY" ]] && {
|
|
|
|
|
if [[ -n "${theme}" && -n "${screen}" ]]; then
|
|
|
|
|
sudo -S <<< $REPLY $0 ${ORIGINAL_ARGUMENTS}
|
|
|
|
|
sudo -S <<< $REPLY $0 --${theme} --${icon} --${screen}
|
|
|
|
|
fi
|
|
|
|
|
} || {
|
|
|
|
|
operation_canceled
|
|
|
|
|
@ -337,7 +337,6 @@ if [[ $# -lt 1 ]] && [[ $UID -ne $ROOT_UID ]] && [[ ! -x /usr/bin/dialog ]] ; t
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
while [[ $# -ge 1 ]]; do
|
|
|
|
|
ORIGINAL_ARGUMENTS="$ORIGINAL_ARGUMENTS $1"
|
|
|
|
|
case "${1}" in
|
|
|
|
|
-b|--boot)
|
|
|
|
|
THEME_DIR="/boot/grub/themes"
|
|
|
|
|
|