mirror of
https://github.com/vale981/Vulcan
synced 2025-03-08 19:11:38 -05:00
13 lines
394 B
Bash
13 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;
|