mirror of
https://github.com/vinceliuice/grub2-themes.git
synced 2024-11-05 17:16:14 +01:00
add root login for TUI ♿
This commit is contained in:
parent
4da0024ad3
commit
d97557af55
41
install.sh
41
install.sh
@ -1,13 +1,20 @@
|
||||
#!/bin/bash
|
||||
|
||||
# Grub2 Themes
|
||||
set -o errexit
|
||||
|
||||
[ GLOBAL::CONF ]
|
||||
{
|
||||
readonly ROOT_UID=0
|
||||
readonly Project_Name="GRUB2::THEMES"
|
||||
readonly MAX_DELAY=20 # max delay for user to enter root password
|
||||
tui_root_login=
|
||||
|
||||
ROOT_UID=0
|
||||
THEME_DIR="/usr/share/grub/themes"
|
||||
|
||||
REO_DIR="$(cd $(dirname $0) && pwd)"
|
||||
|
||||
MAX_DELAY=20 # max delay for user to enter root password
|
||||
}
|
||||
|
||||
|
||||
#COLORS
|
||||
CDEF=" \033[0m" # default color
|
||||
@ -137,6 +144,11 @@ install() {
|
||||
prompt -e "\n [ Error! ] -> Run me as root! "
|
||||
|
||||
# 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 --${theme} --${screen}
|
||||
fi
|
||||
else
|
||||
read -p "[ Trusted ] Specify the root password : " -t${MAX_DELAY} -s
|
||||
[[ -n "$REPLY" ]] && {
|
||||
if [[ -n "${theme}" && -n "${screen}" ]]; then
|
||||
@ -146,11 +158,24 @@ install() {
|
||||
operation_canceled
|
||||
}
|
||||
fi
|
||||
|
||||
fi
|
||||
}
|
||||
|
||||
run_dialog() {
|
||||
if [[ -x /usr/bin/dialog ]]; then
|
||||
tui=$(dialog --backtitle "GRUB2 THEMES" \
|
||||
tui_root_login=$(dialog --backtitle ${Project_Name} \
|
||||
--title "ROOT LOGIN" \
|
||||
--insecure \
|
||||
--passwordbox "require root permission" 8 50 \
|
||||
--output-fd 1 )
|
||||
[[ -z ${tui_root_login} ]] && exit ${UID}
|
||||
sudo -S <<< $tui_root_login $0
|
||||
test $? -eq 0 || {
|
||||
prompt -e "\n [ Error! ] -> wrong passwords"
|
||||
exit 1
|
||||
}
|
||||
tui=$(dialog --backtitle ${Project_Name} \
|
||||
--radiolist "Choose your Grub theme : " 15 40 5 \
|
||||
1 "Vimix Theme" off \
|
||||
2 "Tela Theme" on \
|
||||
@ -164,7 +189,7 @@ run_dialog() {
|
||||
*) operation_canceled ;;
|
||||
esac
|
||||
|
||||
tui=$(dialog --backtitle "GRUB2 THEMES" \
|
||||
tui=$(dialog --backtitle ${Project_Name} \
|
||||
--radiolist "Choose icon style : " 15 40 5 \
|
||||
1 "white" off \
|
||||
2 "color" on --output-fd 1 )
|
||||
@ -174,7 +199,7 @@ run_dialog() {
|
||||
*) operation_canceled ;;
|
||||
esac
|
||||
|
||||
tui=$(dialog --backtitle "GRUB2 THEMES" \
|
||||
tui=$(dialog --backtitle ${Project_Name} \
|
||||
--radiolist "Choose your Display Resolution : " 15 40 5 \
|
||||
1 "1080p" on \
|
||||
2 "2k" off \
|
||||
@ -280,11 +305,11 @@ remove() {
|
||||
}
|
||||
|
||||
# show terminal user interface for better use
|
||||
if [[ $# -lt 1 ]] && [[ $UID -eq $ROOT_UID ]]; then
|
||||
if [[ $# -lt 1 ]] && [[ $UID -ne $ROOT_UID ]] && [[ -x /usr/bin/dialog ]] ; then
|
||||
run_dialog
|
||||
fi
|
||||
|
||||
if [[ $# -lt 1 ]] && [[ $UID -ne $ROOT_UID ]]; then
|
||||
if [[ $# -lt 1 ]] && [[ $UID -ne $ROOT_UID ]] && [[ ! -x /usr/bin/dialog ]] ; then
|
||||
# Error message
|
||||
prompt -e "\n [ Error! ] -> Run me as root! "
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user