A simple yet powerful command-line reminder system that helps you keep track of your tasks and never forget important things. Perfect for developers and terminal users who want to stay organized without leaving their console.
- ✅ Add, complete, and delete reminders
- 📅 Set due dates for your tasks
- 🎯 Priority levels (high, medium, low)
- 🗑️ Clean up completed tasks
- 💾 Persistent storage in JSON format
- 🎨 Beautiful console output with emojis
- 🔧 System-wide installation with remcli command
- Clone or download the script:
git clone https://github.com/bezdarnosti-yt/rem_cli.git
cd rem_cli
- Make the script executable and install system-wide:
sudo cp main.py /usr/local/bin/remcli
sudo chmod +x /usr/local/bin/remcli
- Verify installation:
remcli --help
- Download the script:
wget https://raw.githubusercontent.com/yourusername/reminder-cli/main/main.py
- Install to your system:
sudo install -m 755 main.py /usr/local/bin/remcli
Don't forget to add remcli in startup shell!
Add your first reminder:
remcli add "Finish project documentation" -p high -d 2024-01-20
List your active reminders:
remcli list
Complete a task:
remcli complete 1
remcli add "Your task description" [options]
Options:
-
-p, --priority: Priority level (high, medium, low) - default: medium -
-d, --due-date: Due date in YYYY-MM-DD, DD-MM-YYYY, or MM-DD-YYYY format
Examples:
remcli add "Buy groceries" -p high -d 2024-01-18
remcli add "Call mom" -p low
remcli add "Finish report" --due-date 20-01-2024 --priority high
remcli list [--all]
Without --all: Shows only active reminders
With --all: Shows all reminders including completed ones
remcli complete <id>
Example:
remcli complete 3
remcli delete <id>
Example:
remcli delete 2
remcli cleanup
This removes all completed reminders from your list.
Your reminders are stored in ~/.config/rem_cli/reminders.json. This file is automatically created and managed by the application.
The application uses a simple JSON file for storage. The default location can be changed by modifying the date_file parameter in the source code if needed.
- Command not found: Ensure
/usr/local/binis in your PATH
echo $PATH | grep /usr/local/bin
- Permission denied:
sudo chmod +x /usr/local/bin/remcli
-
JSON decode error: If your reminders file gets corrupted, you can safely delete it at
~/.config/rem_cli/reminders.jsonand start fresh. -
Date format not recognized: Use one of the supported formats: YYYY-MM-DD, DD-MM-YYYY, or MM-DD-YYYY.
To remove remcli from your system:
sudo rm /usr/local/bin/remcli
rm -rf ~/.config/rem_cli/ # Optional: remove your reminder data
Contributions are welcome! Please feel free to submit a Pull Request.
-
Fork the project
-
Create your feature branch (
git checkout -b feature/AmazingFeature) -
Commit your changes (
git commit -m 'Add some AmazingFeature') -
Push to the branch (
git push origin feature/AmazingFeature) -
Open a Pull Request
This project is licensed under the MIT License - see the LICENSE file for details.
-
Inspired by various CLI todo applications
-
Icons from the Unicode standard
-
Built with Python's standard library for maximum compatibility
If you have any questions or issues, please open an issue on GitHub.
Pro tip: Add remcli list to your shell profile (.bashrc, .zshrc) to see your reminders every time you open a terminal!