gugutab / TvOverlay

114 stars 3 forks source link

Line breaks #14

Closed Sat32blk closed 2 months ago

Sat32blk commented 9 months ago

Is there a way to have line breaks in messages sent from home assistant?

gugutab commented 2 months ago

You can edit your Script or Automation in yaml mode like this examples:

service: notify.yourdevice
data:
  message: |
    line1
    line2

or

service: notify.yourdevice
data:
  message: "line1\nline2"

On UI mode, I dont think it's possible. :(