New Idle Screen Options & Navigate Actions
Building off the momentum of yesterdays release, here are some new options to get you around even faster.
TLDR
idle_screennow has two new default screen options:search-recently-playedandsearch-next-up, so the card can open automatically to the Recently Played or Next Up lists when idle.- Navigate has been added to custom actions with
navigation_pathto trigger panels, pop-ups, or external URLs directly from the card. - New menu_item options to create an action button to go to recently played or next up queues
The highlights below are organized by configuration tab.
Look & Feel
- Expanded the Idle Screen options:
defaultstandard view.searchopens to the search sheet.search-recently-playedopens to Recently Played.search-next-upopens to the Next Up queue.
Example
idle_screen: search-next-upActions
- Added an action type for Navigate.
- Provide a
navigation_pathto target:- Dashboard routes such as
/lovelace/media. - Hash anchors like
#popup-living-room. - External URLs.
- Dashboard routes such as
- External URLs can optionally open in a new browser tab when
navigation_new_tabis set totrue. - Menu-driven actions gained two new
menu_itemshortcuts—search-recently-playedandsearch-next-up—so you can jump straight into those filters from an action.
Example
actions:
- name: Living Room View
icon: mdi:television
action: navigate
navigation_path: "#living"
- name: YAMP Github
icon: mdi:open-in-new
action: navigate
navigation_path: "https://github.com/jianyu-li/yet-another-media-player"
navigation_new_tab: true