Last active
October 23, 2019 06:31
-
-
Save emelent/6a18bb8015664877dc605baa40cd10d3 to your computer and use it in GitHub Desktop.
Just include this in your .bashrc setup to have a random Bible verse displayed each time you open the terminal when you're online
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function setup_bible_verses { | |
test -f ~/.bible_verse.sh || | |
curl https://gist.githubusercontent.com/emelent/e5fb3c0a9b1b8f7a28483341752407ab/raw/56d5e4c14b085015d10828fedf8ff8a579934621/bible_verse.sh > ~/.bible_verse.sh | |
source ~/.bible_verse.sh | |
} | |
setup_bible_verses |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment