Skip to content

galuhsahid/quotey

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

quotey

quotey is a simple command line tool that displays a random quote from your custom collection or WikiQuote on shell startup.

📜 features

Every time you start your shell, you can:

  • Get a random quote from your own custom collection
  • Get a random quote from the WikiQuote page of your favorite person

quotey

💡 future improvements

  • Caching

💭 contribute

If you're interested to work in improving the points above/have any idea, feel free to make a pull request/let me know and contribute! 🙏

☁️ install

$ npm install -g quotey

⚙ configuration

custom collection

set directory

First, create a new directory (or choose an existing directory) where you will put all of your collections in. This is going to be the folder that quotey will look for. For example, I want to put all my quotes in a directory called "quotes" (you can name it anything you want!).

In the terminal, navigate (cd) to the "quotes" directory. Take note of the absolute path by running pwd because we're going to need this later:

pwd

/Users/galuhsahid/Documents/quotes

create your own collection(s)

Each collection is represented by a .json file. For example, if you want to make a collection of stoicism quotes, you can do so by creating a .json file in the quotes directory. Name it anything you want, say, "favorite-stoicism-quotes.json".

The structure of the file looks like this:

{
    "name": "My Favorite Stoicism Quotes",
    "quotes": [
        {
            "content": "If you are distressed by anything external, the pain is not due to the thing itself, but to your estimate of it; and this you have the power to revoke at any moment.", 
            "title": "Marcus Aurelius" 
        },
        {
            "content": "It is the power of the mind to be unconquerable.", 
            "title": "Seneca" 
        }
    ]
}

Feel free to add more quotes to the list!

{
    "name": "My Favorite Stoicism Quotes",
    "quotes": [
        {
            "content": "If you are distressed by anything external, the pain is not due to the thing itself, but to your estimate of it; and this you have the power to revoke at any moment.", 
            "title": "Marcus Aurelius" 
        },
        {
            "content": "It is the power of the mind to be unconquerable.", 
            "title": "Seneca" 
        },
        {
            "content": "What really frightens and dismays us is not external events themselves, but the way in which we think about them. It is not things that disturb us, but our interpretation of their significance.", 
            "title": "Epictetus" 
        }
    ]
}

By building your own collection, you can also use quotey not to only display quotes, but also display your favorite poems, passages, & many more on shell startup.

execute on startup

It's the fun part! We have to configure our shell so that it will run quotey on every shell startup.

Depending on the shell you're using, the configuration file that needs to be edited might be different for everyone.

  • If you're using zsh, you're going to edit your .zshrc file.
$ echo 'export QUOTEY_CUSTOM_FOLDER="[absolute path of your collections directory]"' >> ~/.zshrc
$ echo 'quotey -c "favorite-stoicism-quotes.json"' >> ~/.zshrc
  • If you're using bash, you're going to edit your .bash_profile file.
$ echo 'export QUOTEY_CUSTOM_FOLDER="[absolute path of your collections directory]"' >> ~/.bash_profile
$ echo 'quotey -c "favorite-stoicism-quotes.json"' >> ~/.bash_profile

Anytime you want to use a different collection, simply create a new collection in the directory & change the collection name in your shell configuration file.

from WikiQuote

quotey is also able to automagically grab a person's quote from WikiQuote, simply given the person's name.

  • If you're using zsh, you're going to edit your .zshrc file.
$ echo 'quotey -w "Steve Jobs"' >> ~/.zshrc
  • If you're using bash, you're going to edit your .bash_profile file.
$ echo 'quotey -w "Steve Jobs"' >> ~/.bash_profile

If you've had enough of Steve Jobs & wants to display quotes from Picasso, simply change it in your shell configuration file.

About

A simple command line tool that displays a random quote from your custom collection or WikiQuote on shell startup

Resources

License

Stars

Watchers

Forks

Packages

No packages published