diff --git a/scripts/linux.sh b/scripts/linux.sh index 6256ee7..0dd910e 100755 --- a/scripts/linux.sh +++ b/scripts/linux.sh @@ -11,6 +11,24 @@ WT_W=60 command -v whiptail &>/dev/null || { echo "whiptail required (install: apt install whiptail | dnf install newt)"; exit 1; } +# Dark theme for whiptail +export NEWT_COLORS=' +root=,black +window=,black +border=white,black +textbox=white,black +button=black,white +actbutton=white,magenta +compactbutton=white,black +listbox=white,black +actlistbox=white,magenta +title=magenta,black +roottext=white,black +emptyscale=,black +fullscale=,magenta +helpline=white,black +' + # Parameters INSTALL_MODE="" FRIGATE_URL="" diff --git a/scripts/proxmox.sh b/scripts/proxmox.sh index 60eba3f..d42eec7 100755 --- a/scripts/proxmox.sh +++ b/scripts/proxmox.sh @@ -11,6 +11,24 @@ WT_W=60 command -v whiptail &>/dev/null || { echo "whiptail required"; exit 1; } +# Dark theme for whiptail +export NEWT_COLORS=' +root=,black +window=,black +border=white,black +textbox=white,black +button=black,white +actbutton=white,magenta +compactbutton=white,black +listbox=white,black +actlistbox=white,magenta +title=magenta,black +roottext=white,black +emptyscale=,black +fullscale=,magenta +helpline=white,black +' + # Parameters INSTALL_MODE="" FRIGATE_URL=""