{"id":25432917,"url":"https://github.com/shobhit-nagpal/remindr","last_synced_at":"2026-06-19T18:31:58.907Z","repository":{"id":273905113,"uuid":"921242267","full_name":"Shobhit-Nagpal/remindr","owner":"Shobhit-Nagpal","description":"Recurring reminder service for Linux users.","archived":false,"fork":false,"pushed_at":"2025-02-11T15:50:48.000Z","size":30,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-08-31T04:22:00.732Z","etag":null,"topics":["dunst","golang","libnotify","linux"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Shobhit-Nagpal.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-01-23T15:52:17.000Z","updated_at":"2025-02-11T19:29:03.000Z","dependencies_parsed_at":null,"dependency_job_id":"64586efc-6274-4da1-b913-c0aef1aabc43","html_url":"https://github.com/Shobhit-Nagpal/remindr","commit_stats":null,"previous_names":["shobhit-nagpal/remindr"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/Shobhit-Nagpal/remindr","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Shobhit-Nagpal%2Fremindr","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Shobhit-Nagpal%2Fremindr/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Shobhit-Nagpal%2Fremindr/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Shobhit-Nagpal%2Fremindr/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Shobhit-Nagpal","download_url":"https://codeload.github.com/Shobhit-Nagpal/remindr/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Shobhit-Nagpal%2Fremindr/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34544403,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-19T02:00:06.005Z","response_time":61,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["dunst","golang","libnotify","linux"],"created_at":"2025-02-17T05:17:18.446Z","updated_at":"2026-06-19T18:31:58.888Z","avatar_url":"https://github.com/Shobhit-Nagpal.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Remindr\n\nRemindr is a recurring reminder application written in Go. It notifies users on Linux using the `libnotify` library and the `dunst` notification daemon. The application consists of a CLI tool and a server that runs as a systemd user service.\n\n## Features\n- Set recurring reminders via CLI\n- Notifications delivered via `dunst` on Linux\n- Easy installation and setup with a single command\n- Runs as a user-level systemd service\n\n## Dependencies\n- **libnotify**: For sending desktop notifications\n- **dunst**: A lightweight notification daemon for Linux\n\nInstall the dependencies on Ubuntu/Debian:\n```bash\nsudo apt-get install libnotify-bin dunst\n```\n\n## Installation\n\n### Install Using Go\n\n1. **Install Go** (if not already installed):\n   ```bash\n   sudo apt-get install golang\n   ```\n\n2. **Install Remindr**:\n   ```bash\n   go install github.com/Shobhit-Nagpal/remindr/remindr-cli@latest\n   ```\n\n3. **Setup the Service**:\n   ```bash\n   remindr setup /path/to/working/directory\n   ```\n   This will:\n   - Create a systemd user service file at `~/.config/systemd/user/remindr.service`\n   - Start the service using `go run`\n\n4. **Verify the Service**:\n   ```bash\n   systemctl --user status remindr.service\n   ```\n\n### Manual Installation\n\n1. **Clone the Repository**:\n   ```bash\n   git clone https://github.com/Shobhit-Nagpal/remindr.git\n   cd remindr\n   ```\n\n2. **Create the Systemd User Service**:\n   Create a service file at `~/.config/systemd/user/remindr.service`:\n   ```ini\n   [Unit]\n   Description=Remindr Service\n   After=default.target\n\n   [Service]\n   Environment=PATH=/usr/local/go/bin:/usr/local/bin:/usr/bin:/bin\n   ExecStart=go run /path/to/remindr/server/main.go\n   WorkingDirectory=/path/to/remindr/server\n   Restart=on-failure\n\n   [Install]\n   WantedBy=default.target\n   ```\n\n3. **Enable and Start the Service**:\n   ```bash\n   systemctl --user daemon-reload\n   systemctl --user enable remindr.service\n   systemctl --user start remindr.service\n   ```\n\n## Usage\n\n### Set a Reminder\nUse the CLI to set a recurring reminder:\n```bash\nremindr create \"Meeting in 10 minutes\" --interval 600\n```\n\n### List Reminders\nView all active reminders:\n```bash\nremindr list\n```\n\n### Stop a Reminder\nStop a reminder by its ID:\n```bash\nremindr stop \u003cid\u003e\n```\n\n### Run a Reminder\nRun a reminder by its ID:\n```bash\nremindr run \u003cid\u003e\n```\n\n### Remove Service\nTo remove the Remindr service:\n```bash\nremindr destroy\n```\n\n## Troubleshooting\n\n### Notifications Not Showing\nEnsure `dunst` is running:\n```bash\ndunst \u0026\n```\n\n### Service Fails to Start\nCheck the logs:\n```bash\njournalctl --user -u remindr.service\n```\n\n### Service Status\nCheck service status:\n```bash\nsystemctl --user status remindr.service\n```\n\n## Contributing\nContributions are welcome! Please open an issue or submit a pull request.\n\n## License\nThis project is licensed under the MIT License. See the [LICENSE](LICENSE) file for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshobhit-nagpal%2Fremindr","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fshobhit-nagpal%2Fremindr","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshobhit-nagpal%2Fremindr/lists"}