{"id":49073369,"url":"https://github.com/tim-projects/ntfy-notify-send-bridge","last_synced_at":"2026-04-20T08:30:49.693Z","repository":{"id":323503936,"uuid":"1093395132","full_name":"tim-projects/ntfy-notify-send-bridge","owner":"tim-projects","description":"A lightweight bridge to forward messages from ntfy to notify-send for desktop notifications on Linux.","archived":false,"fork":false,"pushed_at":"2026-02-13T05:04:41.000Z","size":28,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-02-13T12:42:15.540Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Python","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/tim-projects.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-11-10T10:09:03.000Z","updated_at":"2026-02-13T05:04:45.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/tim-projects/ntfy-notify-send-bridge","commit_stats":null,"previous_names":["tim-projects/ntfy-notify-send-bridge"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/tim-projects/ntfy-notify-send-bridge","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tim-projects%2Fntfy-notify-send-bridge","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tim-projects%2Fntfy-notify-send-bridge/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tim-projects%2Fntfy-notify-send-bridge/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tim-projects%2Fntfy-notify-send-bridge/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tim-projects","download_url":"https://codeload.github.com/tim-projects/ntfy-notify-send-bridge/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tim-projects%2Fntfy-notify-send-bridge/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32039859,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-20T00:18:06.643Z","status":"online","status_checked_at":"2026-04-20T02:00:06.527Z","response_time":94,"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":[],"created_at":"2026-04-20T08:30:45.893Z","updated_at":"2026-04-20T08:30:49.676Z","avatar_url":"https://github.com/tim-projects.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ntfy-notify-send-bridge\n\nA lightweight bridge to forward messages from [ntfy](https://ntfy.sh/) to `notify-send` for desktop notifications on Linux.\n\nThis project provides a Python script and a systemd user service to listen for ntfy messages and display them as native desktop notifications.\n\n## Features\n\n*   Listens to ntfy topics via JSON stream.\n*   Executes `notify-send` for incoming messages.\n*   Supports ntfy message variables in the `notify-send` command.\n*   Configurable via `client.yml` (compatible with official ntfy client config).\n*   Runs as a persistent systemd user service.\n\n## Installation (AUR)\n\nThis package is available in the Arch User Repository (AUR) as `ntfy-notify-send-bridge-git`.\n\n### Using an AUR Helper (Recommended)\n\nIf you have an AUR helper like `yay` or `paru`, you can install it with:\n\n```bash\nyay -S ntfy-notify-send-bridge-git\n# or\nparu -S ntfy-notify-send-bridge-git\n```\n\n### Manual Installation\n\n1.  Clone the AUR package:\n    ```bash\ngit clone https://aur.archlinux.org/ntfy-notify-send-bridge-git.git\ncd ntfy-notify-send-bridge-git\n    ```\n2.  Build and install:\n    ```bash\nmakepkg -si\n    ```\n\n## Configuration\n\n1. An example configuration file `client.yml.example` is installed to `/usr/share/examples/ntfy-notify-send-bridge-git/`.\n2.  Copy this example to your ntfy configuration directory:\n    ```bash\nmkdir -p ~/.config/ntfy\ncp /usr/share/examples/ntfy-notify-send-bridge-git/client.yml.example ~/.config/ntfy/client.yml\n    ```\n3.  Edit `~/.config/ntfy/client.yml` to add your ntfy subscriptions. Here's an example:\n\n    ```yaml\n    # ~/.config/ntfy/client.yml\n    default-host: https://ntfy.sh\n    subscribe:\n      - topic: mypersonaltopic\n        command: notify-send \"$NTFY_TITLE\" \"$NTFY_MESSAGE\"\n        # Optional: Filter by priority\n        # if: {priority: high,urgent}\n      - topic: another_topic\n        user: myuser\n        password: mypassword\n        command: notify-send -u critical \"New message from $NTFY_TOPIC\" \"$NTFY_MESSAGE\"\n    ```\n\n## Usage\n\nAfter installation and configuration, enable and start the systemd user service:\n\n```bash\nsystemctl --user enable ntfy-notify-send-bridge.service\nsystemctl --user start ntfy-notify-send-bridge.service\n```\n\nTo check the service status or view logs:\n\n```bash\nsystemctl --user status ntfy-notify-send-bridge.service\njournalctl --user -u ntfy-notify-send-bridge.service -f\n```\n\nTo stop the service:\n\n```bash\nsystemctl --user stop ntfy-notify-send-bridge.service\n```\n\n## Dependencies\n\n*   `python`\n*   `python-requests`\n*   `python-pyyaml`\n*   `python-aiohttp`\n*   `libnotify` (provides `notify-send`)\n\n## License\n\nThis project is licensed under the MIT License. See the `LICENSE` file for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftim-projects%2Fntfy-notify-send-bridge","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftim-projects%2Fntfy-notify-send-bridge","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftim-projects%2Fntfy-notify-send-bridge/lists"}