- Go installed on your system (minimum version: 1.16 or higher).
- A terminal with access to git commands.
git clone https://github.com/ShinichiShi/uwu_reminder.git
cd uwu_reminder
Install dependencies: Use go mod tidy to download and sync the required modules:
go mod tidy
Run the application: Start the CLI tool with:
go run main.go
Usage Example:
go run main.go "2024-12-25 10:00" "UwU~ I'm always With You!"
go build -o remind
sudo mv remind /usr/local/bin/
remind <time> <message>
Replace <time>
into 24 hr/ 12 hr format with am/pm :)
We welcome contributions to UwU Reminder! Here’s how you can help:
- Fork the repository.
- Create a feature branch:
git checkout -b feature-name
- Commit your changes:
git commit -m 'Add feature-name'
- Push to the branch:
git push origin feature-name
- Open a pull request.