diff --git a/install.sh b/install.sh index e84c357..6e8b051 100755 --- a/install.sh +++ b/install.sh @@ -112,14 +112,6 @@ sed -i $replace etc/mesh_bot_reporting.service sudo systemctl daemon-reload printf "\n service files updated\n" -# ask if emoji font should be installed for linux -echo "Do you want to install the emoji font for debian/ubuntu linux? (y/n)" -read emoji -if [ $emoji == "y" ]; then - sudo apt-get install -y fonts-noto-color-emoji - echo "Emoji font installed!, reboot to load the font" -fi - if [ $bot == "pong" ]; then # install service for pong bot sudo cp etc/pong_bot.service /etc/systemd/system/ @@ -139,6 +131,14 @@ if [ $bot == "n" ]; then fi fi +# ask if emoji font should be installed for linux +echo "Do you want to install the emoji font for debian/ubuntu linux? (y/n)" +read emoji +if [ $emoji == "y" ]; then + sudo apt-get install -y fonts-noto-color-emoji + echo "Emoji font installed!, reboot to load the font" +fi + printf "\nOptionally if you want to install the LLM Ollama compnents we will execute the following commands\n" printf "\ncurl -fsSL https://ollama.com/install.sh | sh\n"