Skip to content

Installation and Basic Config

Steven Rollason edited this page Oct 23, 2019 · 1 revision

Installation

This can be installed two ways

Using HACS (a.k.a the Easy Way)

This is the easiest way of installing this and allows easy updates. Simply search for "Lovelace Home Feed Card" in the store and follow the instructions.

Manually (a.k.a the Hard Way)

Download all files and place them in somewhere in the www folder under your Home Assistant config folder.

Reference the file under resources like this:

resources:
  - url: /local/path/to/lovelace-home-feed-card.js?v=0.0.0
    type: js

Note: Version 0.2.4 and Firefox

Version 0.2.4 uses dynamic module imports to import modules. Firefox versions < 66 don't support these by default and you may need to set the javascript.options.dynamicImport option in  about:config for it to work.

Basic Config

This is the most basic configuration, which will display all persistent notifications on your feed:

type: 'custom:home-feed-card'
title: Home Feed

A more advanced example which displays calendar events, entities, and filters notifications by id:

type: 'custom:home-feed-card'
title: Home Feed
show_empty: false
calendars:
  - calendar.home_calendar
  - calendar.work_calendar
id_filter: ^home_feed_.*
entities:
  - sensor.next_alarm_time
  - entity: sensor.bin_collection