Global card setting secondary_info

Please consider adding a card global setting for secondary_info (compare with new global option for color_state)
use case:
card with only automations for which we now have to set

entity: automation.to check
secondary_info: last-triggered

which take a grand deal of code, with more than a few entities in the card.

would be really nice, and a huge improvement if we could simple state

  - type: entities
    title: Motion automations
    show_header_toggle: true
    color_state: true
    secondary_info: last-triggered
    entities:
      - automation.update_last_motion
      - automation.frontdoor_sensor_off_when_dogs_free
      - automation.light_sensor_picked_up_motion
      - automation.motion_sensor_picked_up_motion
      - automation.set_motion_detection
      - automation.switch_masterbed_outlet_when_motion

instead of:

  - type: entities
    title: Motion automations
    show_header_toggle: true
    color_state: true
    entities:
      - entity: automation.update_last_motion
        secondary_info: last-triggered
      - entity: automation.frontdoor_sensor_off_when_dogs_free
        secondary_info: last-triggered
      - entity: automation.light_sensor_picked_up_motion
        secondary_info: last-triggered
      - entity: automation.motion_sensor_picked_up_motion
        secondary_info: last-triggered
      - entity: automation.set_motion_detection
        secondary_info: last-triggered
      - entity: automation.switch_masterbed_outlet_when_motion
        secondary_info: last-triggered