mirror of https://github.com/tteck/Proxmox.git
added dark theme as last option
This commit is contained in:
parent
995346d2fc
commit
553f46ef5d
|
@ -113,5 +113,13 @@ apt-get -y dist-upgrade &>/dev/null
|
||||||
msg_ok "Updated Proxmox VE 7"
|
msg_ok "Updated Proxmox VE 7"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
read -r -p "Enable dark theme for the Proxmox Web UI? <Y/n> " prompt
|
||||||
|
if [[ $prompt == "y" || $prompt == "Y" || $prompt == "yes" || $prompt == "Yes" ]]
|
||||||
|
then
|
||||||
|
msg_info "Enabling UI dark theme"
|
||||||
|
bash <(curl -s https://raw.githubusercontent.com/Weilbyte/PVEDiscordDark/master/PVEDiscordDark.sh ) install
|
||||||
|
msg_ok "Web UI dark theme enabled"
|
||||||
|
fi
|
||||||
|
|
||||||
sleep 2
|
sleep 2
|
||||||
msg_ok "Finished Post Install Routines"
|
msg_ok "Finished Post Install Routines"
|
||||||
|
|
Loading…
Reference in New Issue