{"id":13582860,"url":"https://github.com/bernikr/lovelace-notify-card","last_synced_at":"2026-02-06T04:11:25.884Z","repository":{"id":51227020,"uuid":"358962656","full_name":"bernikr/lovelace-notify-card","owner":"bernikr","description":"Send notifications directly from the dashboard","archived":false,"fork":false,"pushed_at":"2025-04-30T11:17:16.000Z","size":41,"stargazers_count":56,"open_issues_count":3,"forks_count":19,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-04-30T12:43:31.811Z","etag":null,"topics":["card","homeassistant","lovelace","notification","notifications","notify","service"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","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/bernikr.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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}},"created_at":"2021-04-17T19:15:29.000Z","updated_at":"2025-04-30T11:10:37.000Z","dependencies_parsed_at":"2024-11-05T23:32:35.370Z","dependency_job_id":"298d1036-02ce-41db-9dfa-4958f81af6ec","html_url":"https://github.com/bernikr/lovelace-notify-card","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/bernikr/lovelace-notify-card","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bernikr%2Flovelace-notify-card","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bernikr%2Flovelace-notify-card/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bernikr%2Flovelace-notify-card/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bernikr%2Flovelace-notify-card/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bernikr","download_url":"https://codeload.github.com/bernikr/lovelace-notify-card/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bernikr%2Flovelace-notify-card/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29149964,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-06T02:39:25.012Z","status":"ssl_error","status_checked_at":"2026-02-06T02:37:22.784Z","response_time":59,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["card","homeassistant","lovelace","notification","notifications","notify","service"],"created_at":"2024-08-01T15:03:04.856Z","updated_at":"2026-02-06T04:11:25.878Z","avatar_url":"https://github.com/bernikr.png","language":"JavaScript","funding_links":["https://buymeacoffee.com/bernikr"],"categories":["JavaScript"],"sub_categories":[],"readme":"# Notify Card for Lovelace/Home Assistant\n\n[![\"Buy Me A Coffee\"](https://img.shields.io/static/v1?label=donate\u0026message=buymeacoffe\u0026color=FFDD00\u0026logo=buymeacoffee\u0026style=flat-square)](https://buymeacoffee.com/bernikr)\n[![\"Chat on Telegram\"](https://img.shields.io/static/v1?label=chat\u0026message=Telegram\u0026color=26A5E4\u0026logo=telegram\u0026style=flat-square)](https://t.me/bernikr)\n\nThis simple card allows you to notify any notification service manually from the dashboard.\n\n![card](card.jpg)\n\n## Install\n### Install via HACS\n1. Go to the \"Frontend\"-tab in HACS\n2. Click on \"Explore \u0026 Add Repositories\"\n3. Search for `Notify Card`\n5. Click \"Install this Repository in HACS\"\n\n### Manual install\n1. Copy the `notify-card.js` file to your `config/www` folder\n2. Add a reference in the resource config:\n\n```\nresources:\n  - url: /local/notify-card.js\n    type: module\n```\n\n## Config\nExample config:\n\n```\ntype: 'custom:notify-card'\nlabel: Notify TV\ncard_title: Send Notification\nnotification_title:\n  input: Title\naction: notify.living_room_tv\ndata:\n  message: \"{{ msg }}\"\n  title: \"{{ title }}\"\n```\n\n- `action` is the name of the action (service) to be called\n- `data` is used to define the data that gets passed to the action. Any data can be entered here and home assistant templates are supported. (with `msg` and `title` as variables for the entered text and `user` for the current user object)\n- `label` is optional and controls the placeholder text\n- `card_title` is optional and controls the card title\n- `notification_title` is optional and can be used as a second textfield\n\nMinimal config:\n\n```\ntype: 'custom:notify-card'\naction: notify.living_room_tv\ndata:\n  message: \"{{ msg }}\"\n```\n\nFor services that require an entity as a target:\n\n```\ntype: 'custom:notify-card'\naction: tts.google_say\ndata:\n  message: \"{{ msg }}\"\ntarget:\n  entity_id: media_player.nestmini_living_room\n```\n\nIf you want a textfield to set the notification title with every message you can configure it like this:\n```\n...\ntype: 'custom:notify-card'\naction: notify.living_room_tv\ndata:\n  message: \"{{ msg }}\"\n  title: \"{{ title }}\"\nnotification_title:\n  input:\n```\n\nIf you want to change the label of the title textfield you can do that in the input parameter:\n```\n...\nnotification_ title:\n  input: 'Put Title here'\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbernikr%2Flovelace-notify-card","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbernikr%2Flovelace-notify-card","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbernikr%2Flovelace-notify-card/lists"}