4
0

config.yaml 989 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. ---
  2. listenAddressSingleHTTPFrontend: 0.0.0.0:1337
  3. logLevel: "DEBUG"
  4. checkForUpdates: false
  5. defaultPopupOnStart: execution-dialog
  6. entities:
  7. - file: entities/rooms.yaml
  8. name: room
  9. actions:
  10. - title: Test checklist argument
  11. shell: "echo 'Selected segments: {{ segments }}'"
  12. icon: ping
  13. arguments:
  14. - name: segments
  15. title: Rooms to clean
  16. type: checklist
  17. description: Select the rooms to include in the vacuum run.
  18. choices:
  19. - title: Kitchen
  20. value: kitchen
  21. - title: Bedroom
  22. value: bedroom
  23. - title: Hallway
  24. value: hallway
  25. default: kitchen,bedroom
  26. - title: Test checklist entity argument
  27. shell: "echo 'Selected rooms: {{ rooms }}'"
  28. icon: ping
  29. arguments:
  30. - name: rooms
  31. title: Rooms to include
  32. type: checklist
  33. entity: room
  34. choices:
  35. - title: '{{ room.hostname }}'
  36. value: '{{ room.hostname }}'