mirror of
https://github.com/vale981/Vulcan
synced 2025-03-07 02:21:43 -05:00
12 lines
394 B
Bash
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;
|