mirror of https://github.com/tteck/Proxmox.git
73 lines
1.6 KiB
Bash
73 lines
1.6 KiB
Bash
#!/usr/bin/env bash
|
|
# bash -c "$(wget -qLO - https://raw.githubusercontent.com/tteck/Proxmox/main/misc/node-red-dark.sh)"
|
|
set -o errexit
|
|
RD=`echo "\033[01;31m"`
|
|
BL=`echo "\033[36m"`
|
|
CM='\xE2\x9C\x94\033'
|
|
GN=`echo "\033[1;92m"`
|
|
CL=`echo "\033[m"`
|
|
clear
|
|
echo -e "${RD}Backup your Node-Red flows before running this script!!${CL} \n "
|
|
while true; do
|
|
read -p "This will Install midnight-red theme. Proceed(y/n)?" yn
|
|
case $yn in
|
|
[Yy]* ) break;;
|
|
[Nn]* ) exit;;
|
|
* ) echo "Please answer yes or no.";;
|
|
esac
|
|
done
|
|
clear
|
|
echo -en "${GN} Updating Container OS... "
|
|
apt-get update &>/dev/null
|
|
apt-get -qqy upgrade &>/dev/null
|
|
echo -e "${CM}${CL} \r"
|
|
|
|
echo -en "${GN} Installing midnight-red Theme... "
|
|
cd /root/.node-red
|
|
npm install @node-red-contrib-themes/midnight-red &>/dev/null
|
|
echo -e "${CM}${CL} \r"
|
|
|
|
echo -en "${GN} Writing Settings... "
|
|
cat <<EOF > /root/.node-red/settings.js
|
|
module.exports = { uiPort: process.env.PORT || 1880,
|
|
|
|
mqttReconnectTime: 15000,
|
|
|
|
serialReconnectTime: 15000,
|
|
|
|
debugMaxLength: 1000,
|
|
|
|
functionGlobalContext: {
|
|
},
|
|
exportGlobalContextKeys: false,
|
|
|
|
|
|
// Configure the logging output
|
|
logging: {
|
|
console: {
|
|
level: "info",
|
|
metrics: false,
|
|
audit: false
|
|
}
|
|
},
|
|
|
|
// Customising the editor
|
|
editorTheme: {
|
|
theme: "midnight-red"
|
|
},
|
|
projects: {
|
|
// To enable the Projects feature, set this value to true
|
|
enabled: false
|
|
}
|
|
}
|
|
EOF
|
|
echo -e "${CM}${CL} \r"
|
|
|
|
echo -en "${GN} Restarting Node-Red... "
|
|
echo -e "${CM}${CL} \r"
|
|
node-red-restart
|
|
echo -en "${GN} Finished... ${CL} \n"
|
|
exit
|
|
|
|
|