From 553f46ef5dbdbca34397fbf452290c41230da321 Mon Sep 17 00:00:00 2001 From: sullivan1337 <33563292+sullivan1337@users.noreply.github.com> Date: Mon, 4 Jul 2022 17:20:56 -0700 Subject: [PATCH] added dark theme as last option --- misc/post-install-v3.sh | 8 ++++++++ 1 file changed, 8 insertions(+) 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"