Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change bootup message #5378

Merged
merged 18 commits into from
Aug 28, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,17 @@ echo " |___/ "

BOOTUP_MESSAGE="
The boot up process might take a while. Please be patient...

Have you checked out Community Routines yet? You can access them through the OpenBB Hub!
Get started in less than 3 minutes: https://www.youtube.com/watch?v=UFh_Ku0fdtY

"
echo "$BOOTUP_MESSAGE"

# Add some messages we can print out
messages=("" "" "" "" "Did you know that you can search for stocks from a given country by running stocks/search --exchangecountry COUNTRY")
# Pick a random one
index=$((RANDOM % ${#messages[@]}))
echo ${messages[$index]}

"$SCRIPTDIR"/.OpenBB/OpenBBTerminal
Loading