settings.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "Alerts": {
  3. "Command": "/home/pi/mpc-alarm-cron.sh",
  4. "Groups": [
  5. {
  6. "Name": "Weekdays",
  7. "Options": [
  8. {
  9. "Label": "06:20 - Work",
  10. "Pattern": "20 06 * * MON-FRI"
  11. },
  12. {
  13. "Label": "08:30 - Holidays",
  14. "Pattern": "30 08 * * MON-FRI"
  15. },
  16. {
  17. "Label": "09:00 - Sleeping In",
  18. "Pattern": "00 09 * * MON-FRI"
  19. }
  20. ]
  21. },
  22. {
  23. "Name": "Saturday",
  24. "Options": [
  25. {
  26. "Label": "08:20 - Long-Jog",
  27. "Pattern": "20 08 * * SAT"
  28. },
  29. {
  30. "Label": "08:00 - Long-Jog (early)",
  31. "Pattern": "00 08 * * SAT"
  32. },
  33. {
  34. "Label": "07:40 - Long-Jog (very early)",
  35. "Pattern": "40 07 * * SAT"
  36. }
  37. ]
  38. },
  39. {
  40. "Name": "Sunday",
  41. "Options": [
  42. {
  43. "Label": "09:00 - Lazy",
  44. "Pattern": "00 09 * * SUN"
  45. }
  46. ]
  47. }
  48. ]
  49. }
  50. }