mirror of https://github.com/tteck/Proxmox.git
Update node-red-themes.sh
This commit is contained in:
parent
912501d886
commit
20bd85ee38
|
@ -20,12 +20,13 @@ done
|
||||||
clear
|
clear
|
||||||
echo -e "${RD} Backup your Node-Red flows before installing any theme!!${CL} \n "
|
echo -e "${RD} Backup your Node-Red flows before installing any theme!!${CL} \n "
|
||||||
printf "\n${BL}*********************************************${CL}\n"
|
printf "\n${BL}*********************************************${CL}\n"
|
||||||
printf "${BL}**${YW} 1)${GN} Dark Theme ${CL}\n"
|
printf "${BL}**${YW} 1)${GN} Default Theme ${CL}\n"
|
||||||
printf "${BL}**${YW} 2)${GN} Dracula Theme ${CL}\n"
|
printf "${BL}**${YW} 2)${GN} Dark Theme ${CL}\n"
|
||||||
printf "${BL}**${YW} 3)${GN} Midnight-Red Theme ${CL}\n"
|
printf "${BL}**${YW} 3)${GN} Dracula Theme ${CL}\n"
|
||||||
printf "${BL}**${YW} 4)${GN} Oled Theme ${CL}\n"
|
printf "${BL}**${YW} 4)${GN} Midnight-Red Theme ${CL}\n"
|
||||||
printf "${BL}**${YW} 5)${GN} Solarized-Dark Theme ${CL}\n"
|
printf "${BL}**${YW} 5)${GN} Oled Theme ${CL}\n"
|
||||||
printf "${BL}**${YW} 6)${GN} Solarized-Light Theme ${CL}\n"
|
printf "${BL}**${YW} 6)${GN} Solarized-Dark Theme ${CL}\n"
|
||||||
|
printf "${BL}**${YW} 7)${GN} Solarized-Light Theme ${CL}\n"
|
||||||
printf "${BL}*********************************************${CL}\n"
|
printf "${BL}*********************************************${CL}\n"
|
||||||
printf "Please choose a theme from the menu and enter or ${RD}x to exit. ${CL}"
|
printf "Please choose a theme from the menu and enter or ${RD}x to exit. ${CL}"
|
||||||
read opt
|
read opt
|
||||||
|
@ -47,31 +48,37 @@ while [ $opt != '' ]
|
||||||
else
|
else
|
||||||
case $opt in
|
case $opt in
|
||||||
1) clear;
|
1) clear;
|
||||||
|
option_picked "Installing Default Theme";
|
||||||
|
THEME=
|
||||||
|
JS=//
|
||||||
|
break;
|
||||||
|
;;
|
||||||
|
2) clear;
|
||||||
option_picked "Installing Dark Theme";
|
option_picked "Installing Dark Theme";
|
||||||
THEME=dark
|
THEME=dark
|
||||||
break;
|
break;
|
||||||
;;
|
;;
|
||||||
2) clear;
|
3) clear;
|
||||||
option_picked "Installing Dracula Theme";
|
option_picked "Installing Dracula Theme";
|
||||||
THEME=dracula
|
THEME=dracula
|
||||||
break;
|
break;
|
||||||
;;
|
;;
|
||||||
3) clear;
|
4) clear;
|
||||||
option_picked "Installing Midnight-Red Theme";
|
option_picked "Installing Midnight-Red Theme";
|
||||||
THEME=midnight-red
|
THEME=midnight-red
|
||||||
break;
|
break;
|
||||||
;;
|
;;
|
||||||
4) clear;
|
5) clear;
|
||||||
option_picked "Installing Oled Theme";
|
option_picked "Installing Oled Theme";
|
||||||
THEME=oled
|
THEME=oled
|
||||||
break;
|
break;
|
||||||
;;
|
;;
|
||||||
5) clear;
|
6) clear;
|
||||||
option_picked "Installing Solarized-Dark Theme";
|
option_picked "Installing Solarized-Dark Theme";
|
||||||
THEME=solarized-dark
|
THEME=solarized-dark
|
||||||
break;
|
break;
|
||||||
;;
|
;;
|
||||||
6) clear;
|
7) clear;
|
||||||
option_picked "Installing Solarized-Light Theme";
|
option_picked "Installing Solarized-Light Theme";
|
||||||
THEME=solarized-light
|
THEME=solarized-light
|
||||||
break;
|
break;
|
||||||
|
@ -95,9 +102,12 @@ echo -e "${CM}${CL} \r"
|
||||||
|
|
||||||
echo -en "${GN} Installing ${THEME} Theme... "
|
echo -en "${GN} Installing ${THEME} Theme... "
|
||||||
cd /root/.node-red
|
cd /root/.node-red
|
||||||
|
if [ "${THEME}" = "" ]; then
|
||||||
|
echo -e "${CM}${CL} \r"
|
||||||
|
else
|
||||||
npm install @node-red-contrib-themes/${THEME} &>/dev/null
|
npm install @node-red-contrib-themes/${THEME} &>/dev/null
|
||||||
echo -e "${CM}${CL} \r"
|
echo -e "${CM}${CL} \r"
|
||||||
|
fi
|
||||||
echo -en "${GN} Writing Settings... "
|
echo -en "${GN} Writing Settings... "
|
||||||
cat <<EOF > /root/.node-red/settings.js
|
cat <<EOF > /root/.node-red/settings.js
|
||||||
module.exports = { uiPort: process.env.PORT || 1880,
|
module.exports = { uiPort: process.env.PORT || 1880,
|
||||||
|
@ -119,7 +129,7 @@ module.exports = { uiPort: process.env.PORT || 1880,
|
||||||
|
|
||||||
// Customising the editor
|
// Customising the editor
|
||||||
editorTheme: {
|
editorTheme: {
|
||||||
theme: "${THEME}"
|
${JS}theme: "${THEME}"
|
||||||
},
|
},
|
||||||
projects: {
|
projects: {
|
||||||
// To enable the Projects feature, set this value to true
|
// To enable the Projects feature, set this value to true
|
||||||
|
|
Loading…
Reference in New Issue