{"id":35037981,"url":"https://github.com/fteem/pbox","last_synced_at":"2026-05-20T08:06:50.088Z","repository":{"id":57611250,"uuid":"118369686","full_name":"fteem/pbox","owner":"fteem","description":"💊 CLI app I hope you never use. But if you do, it will help you not forget your medication.","archived":false,"fork":false,"pushed_at":"2018-01-25T18:36:58.000Z","size":39,"stargazers_count":4,"open_issues_count":1,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-10-09T05:43:11.208Z","etag":null,"topics":["daemon","go","golang","medication","osx","reminder"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/fteem.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2018-01-21T20:09:23.000Z","updated_at":"2022-06-10T18:56:17.000Z","dependencies_parsed_at":"2022-09-11T11:12:56.154Z","dependency_job_id":null,"html_url":"https://github.com/fteem/pbox","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/fteem/pbox","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fteem%2Fpbox","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fteem%2Fpbox/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fteem%2Fpbox/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fteem%2Fpbox/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fteem","download_url":"https://codeload.github.com/fteem/pbox/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fteem%2Fpbox/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28075690,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-12-27T02:00:05.897Z","response_time":58,"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":["daemon","go","golang","medication","osx","reminder"],"created_at":"2025-12-27T08:03:13.744Z","updated_at":"2025-12-27T08:03:40.846Z","avatar_url":"https://github.com/fteem.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 💊 Pillbox\n\n[![Go Report Card](https://goreportcard.com/badge/github.com/fteem/pbox)](https://goreportcard.com/report/github.com/fteem/pbox)\n\n## What is this?\n\nThis is a CLI app written in Golang, that can be used to set medications reminders.\nI hope you *never* use it, but if you are sick and you are taking meds, this\nmight help you remember when to take your meds. At least it helped me.\n\n### ❗️ Important ❗️\n\nCurrently this works only on OSX, since it heavily relies on `launchd` for\nmanagement of the daemon. When I get the OSX support clean and shiny I will take\na look at GNU/Linux and Windows.\n\n## Installation\n\n```\ngo get github.com/fteem/pbox\n```\n\nThat should do it.\n\n## Usage\n\nPillbox is a package that allows you to set reminders for your medications. It\ndoesn't allow setting exact consumption times per medication, but it splits all\nmedication in three consumption times: morning (10:00h), afternoon (16:00h) and\nevening (20:00h).\n\nThe notifications are in fact OSX notifications, shown using\n[notify](https://github.com/martinlindhe/notify). They look like this:\n\n![alert](alert.png)\n\n### Installation\n\nTo install the `pillboxd` daemon, you need to run:\n\n```\npillbox install\n```\n\nThis will create a new `launchd` agent for your user, which will manage the state\nof the daemon. The Property List (`.plist`) file will be located at `~/Library/LaunchAgent/com.ieftimov.pillbox.plist`.\n\nThere's no need to load the agent since the command will take care of that.\nPost-install you should receive a notification that the daemon is started.\n\nTo check if the agent is running, run:\n\n```\npillbox status\n```\n\n### Uninstallation\n\nTo completely remove the daemon you can run:\n\n```\npillbox uninstall\n```\n\nThat's it, no more reminders!\n\n### Reminders management\n\nTo list all reminders, use:\n\n```\npillbox reminders list\n```\n\nThis will print out a table containing all of the active reminders:\n\n```\n+-------------+---------+-----------+---------+\n| Name        | Morning | Afternoon | Evening |\n+-------------+---------+-----------+---------+\n| Probiotics  | Yes     | No        | No      |\n| Antibiotics | Yes     | Yes       | Yes     |\n| Brufen      | No      | No        | Yes     |\n+-------------+---------+-----------+---------+\n```\n\nTo add a new reminder, use:\n\n```\npillbox reminders add Antibiotics [--morning] [--afternoon] [--evening]\n```\n\nThis will set a reminder for `Antibiotics`, but it will require any of the three\nflags to be set. If any of the flags are not present, it will fail with:\n\n```\npillbox: error: Any (or all) of the --morning, --afternoon or --evening flags have to be present.\n```\n\nTo remove a reminder, use:\n\n```\npillbox reminders remove Antibiotics\n```\n\n## Contributing\n\nBug reports and pull requests are welcome on GitHub at https://github.com/fteem/pbox. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](https://www.contributor-covenant.org/) code of conduct.\n\n## License\n\nThe code is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffteem%2Fpbox","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffteem%2Fpbox","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffteem%2Fpbox/lists"}