Vulcan/prestart_nova.sh

12 lines
394 B
Bash

purple=$(tput setaf 141)
blue=$(tput setaf 153)
bold=$(tput bold)
reset=$(tput sgr0)
test -f settings.json || (echo "🛠 ${blue}Creating your own settings.json file...\n"; cp sample_settings.json settings.json;)
echo "🔭 ${bold}${purple}Happy hacking with Telescope Nova!${reset}";
echo "📖 ${blue}The docs are available at: ${purple}http://nova-docs.telescopeapp.org";
tput sgr0;