example-config.json 629 B

12345678910111213141516171819202122232425262728293031323334
  1. [
  2. {
  3. "id": "widget-1",
  4. "type": "clock",
  5. "settings": {
  6. "format": "24h",
  7. "showDate": true,
  8. "showLabel": true,
  9. "label": "Current Time"
  10. }
  11. },
  12. {
  13. "id": "widget-2",
  14. "type": "crypto-price",
  15. "settings": {
  16. "symbol": "bitcoin",
  17. "currency": "USD",
  18. "refreshInterval": 60000,
  19. "showLabel": true,
  20. "label": "Bitcoin Price"
  21. }
  22. },
  23. {
  24. "id": "widget-3",
  25. "type": "crypto-price",
  26. "settings": {
  27. "symbol": "ethereum",
  28. "currency": "USD",
  29. "refreshInterval": 60000,
  30. "showLabel": true,
  31. "label": "Ethereum Price"
  32. }
  33. }
  34. ]