Proxmox/misc/node-red-dark.sh

91 lines
2.0 KiB
Bash
Raw Normal View History

2022-02-18 20:01:49 +01:00
#!/usr/bin/env bash
# bash -c "$(wget -qLO - https://raw.githubusercontent.com/tteck/Proxmox/main/misc/node-red-dark.sh)"
set -o errexit
set -o errtrace
set -o nounset
set -o pipefail
shopt -s expand_aliases
alias die='EXIT=$? LINE=$LINENO error_exit'
RD=`echo "\033[01;31m"`
BL=`echo "\033[36m"`
CM='\xE2\x9C\x94\033'
GN=`echo "\033[1;92m"`
CL=`echo "\033[m"`
trap die ERR
trap 'die "Script interrupted."' INT
2022-02-18 21:12:29 +01:00
echo -e "${RD} Backup your Node-Red flows before running this script!!${CL} \n "
2022-02-18 20:59:12 +01:00
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
2022-02-18 20:01:49 +01:00
function error_exit() {
trap - ERR
local DEFAULT='Unknown failure occured.'
local REASON="\e[97m${1:-$DEFAULT}\e[39m"
local FLAG="\e[91m[ERROR:LXC] \e[93m$EXIT@$LINE"
msg "$FLAG $REASON"
exit $EXIT
}
function msg() {
local TEXT="$1"
echo -e "$TEXT"
}
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
2022-02-18 21:16:40 +01:00
module.exports = { uiPort: process.env.PORT || 1880,
2022-02-18 20:59:12 +01:00
2022-02-18 21:16:40 +01:00
mqttReconnectTime: 15000,
2022-02-18 20:59:12 +01:00
2022-02-18 21:16:40 +01:00
serialReconnectTime: 15000,
2022-02-18 20:59:12 +01:00
2022-02-18 21:16:40 +01:00
debugMaxLength: 1000,
2022-02-18 20:59:12 +01:00
2022-02-18 21:16:40 +01:00
functionGlobalContext: {
2022-02-18 20:01:49 +01:00
},
2022-02-18 21:16:40 +01:00
exportGlobalContextKeys: false,
2022-02-18 20:59:12 +01:00
2022-02-18 21:16:40 +01:00
// Configure the logging output
logging: {
console: {
level: "info",
metrics: false,
audit: false
2022-02-18 20:59:12 +01:00
}
},
2022-02-18 21:16:40 +01:00
// Customising the editor
editorTheme: {
theme: "midnight-red"
2022-02-18 20:59:12 +01:00
},
2022-02-18 21:16:40 +01:00
projects: {
// To enable the Projects feature, set this value to true
enabled: true
}
2022-02-18 20:01:49 +01:00
}
EOF
echo -e "${CM}${CL} \r"
echo -en "${GN} Restarting Node-Red... "
echo -e "${CM}${CL} \r"
2022-02-18 20:06:34 +01:00
node-red-restart
2022-02-18 20:01:49 +01:00
echo -en "${GN} Finished... ${CL} \n"
exit