Skip to content
Open
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
25 changes: 25 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,31 @@ $HOME/terminal_sunday.sh 1985-06-08 Joe 10

the main thing is that 80 is divisible without a remainder by this number of columns :)

To make to command more easy to remember you can just add a function to your environment variable file

> If your using mac then it(environment variable file) should be in your home directory called the .bash_profile

> If your using linux ubuntu it(environment variable file) should be in your home directory called the .bashrc

add this code in the bottom of that file :

```bash

life(){
$HOME/terminal_sunday.sh yyyy-mm-dd your-name
}

```

After adding this function at the end your your .bashrc file .
You can run the script just by typing "life" in your terminal

```bash

life

```

## Credits

Inspired by [The Last Sunday](https://chromewebstore.google.com/detail/the-last-sunday-reminder/aiojhapcgfgmiacbbjfgedhlcchmpelh?pli=1) chrome extension.
Expand Down