This is a re-implementation of funmotd, originally written in Python. ๐
A tool to display random inspirational quotes and famous dialogues from movies and TV shows on your CLI.
demo.mov
โ๏ธ Works entirely offline.- ๐ฆ Single binary, no dependencies.
- ๐ Option to enable NSFW quotes.
- ๐ฅ๏ธ Useful as Message of the Day (MOTD) in your terminal when you open it.
brew tap veerendra2/tap
brew install --cask quotations- Download the latest binary from the Releases page.
- Move it to a directory included in your
$PATH, such as/usr/local/bin/.
mv quotations /usr/local/bin/
chmod +x /usr/local/bin/quotationsRun the following command to see available options:
quotations --help
-e Display entertainment quotes (default)
-i Display inspirational quotes
-n Enable NSFW quotesTo display a random quote each time you open your terminal, add the following line to your shell configuration file (e.g., ~/.bashrc, ~/.zshrc, or ~/.profile).
# Example for bash
echo "/usr/local/bin/quotations" >> ~/.bashrc
# To include NSFW quotes
echo "/usr/local/bin/quotations -n" >> ~/.bashrc
# By default it displays entertainment quotes
# To display inspirational quotes
echo "/usr/local/bin/quotations -i" >> ~/.bashrcThen, reload your shell configuration:
source ~/.bashrccd assets
pip3 install -r requirements.txt
# See comments in the script for help
python3 quotes_updater.pyContributions are welcome! Feel free to submit issues, pull requests, or even suggest new quotes.