diff --git a/misc/post-install-v3.sh b/misc/post-install-v3.sh index 54d0e44e..ac230254 100644 --- a/misc/post-install-v3.sh +++ b/misc/post-install-v3.sh @@ -113,5 +113,13 @@ apt-get -y dist-upgrade &>/dev/null msg_ok "Updated Proxmox VE 7" fi +read -r -p "Enable dark theme for the Proxmox Web UI? " 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 msg_ok "Finished Post Install Routines"