https://github.com/AlexisBRENON/oh-my-zsh-reminder
A very very simple OhMyZsh plugin which displays reminders above every prompt
https://github.com/AlexisBRENON/oh-my-zsh-reminder
displays-reminders ohmyzsh-plugin shell
Last synced: about 20 hours ago
JSON representation
A very very simple OhMyZsh plugin which displays reminders above every prompt
- Host: GitHub
- URL: https://github.com/AlexisBRENON/oh-my-zsh-reminder
- Owner: AlexisBRENON
- License: mit
- Created: 2015-01-10T08:46:27.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2021-06-15T00:54:31.000Z (over 4 years ago)
- Last Synced: 2025-06-10T17:07:36.354Z (5 months ago)
- Topics: displays-reminders, ohmyzsh-plugin, shell
- Language: Shell
- Size: 7.81 KB
- Stars: 38
- Watchers: 1
- Forks: 14
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-zsh-plugins - reminder - A plugin which displays reminders above every prompt. (Plugins / ZSH on Windows)
- fucking-awesome-zsh-plugins - reminder - A plugin which displays reminders above every prompt. (Plugins / ZSH on Windows)
- awesome-zsh-plugins - reminder - A plugin which displays reminders above every prompt. (Plugins / Zinit (née zplugin))
README
# oh-my-zsh-reminder
A very very simple OhMyZsh plugin which displays reminders above every prompt
This small plugin allows your terminal to remind you that you have somethind to do.
Start adding a task :
$ todo Delete this task
Todo :
- Delete this task
$
You can add an other one :
$ todo Keep this one
Todo :
- Delete this task
- Keep this one
$
When a task is done, remove it from the list :
$ task_done Delete
Todo :
- Keep this one
$
When all tasks are done, reminder vanishes :
$ task_done Keep
$
That's all for the moment. As I said, very very simple. Maybe will be improved later.
# Installation
To install, clone the repo into `~/.oh-my-zsh/custom/plugins` (ZSH plugins don't allow dashes, so make sure you clone it into a single-word folder):
``` bash
git clone https://github.com/AlexisBRENON/oh-my-zsh-reminder ~/.oh-my-zsh/custom/plugins/reminder
```
Then add it to your list of plugins in `~/.zshrc` (e.g `plugins=(reminder common-aliases extract git sudo taskwarrior)`).