Skip to content

Commit

Permalink
Change bootup message (#5378)
Browse files Browse the repository at this point in the history
* remove twitter functions

* remove twitter functions and all references to it

* remove twitter functions

* remove twitter functions and all references to it

* bootup message

* bootup message syntax

* apparently this doesnt need commas

* add random index

* Words

* Correct command
  • Loading branch information
jmaslek authored and the-praxs committed Sep 4, 2023
1 parent 249fdd8 commit 6916980
Showing 1 changed file with 10 additions and 0 deletions.
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

0 comments on commit 6916980

Please sign in to comment.