MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    1. Home
    2. TomJC70
    A New Chapter for MagicMirror: The Community Takes the Lead
    Read the statement by Michael Teeuw here.
    T
    Offline
    • Profile
    • Following 0
    • Followers 0
    • Topics 1
    • Posts 2
    • Groups 0

    TomJC70

    @TomJC70

    0
    Reputation
    3
    Profile views
    2
    Posts
    0
    Followers
    0
    Following
    Joined
    Last Online

    TomJC70 Unfollow Follow

    Latest posts made by TomJC70

    • RE: Calendar: how to change "In 2 days"?

      Both are set to 0 and from my understanding this should mean I see absolute dates only.

      edit:
      I did some more testing and the problem only occurs with full day events.

      posted in Troubleshooting
      T
      TomJC70
    • Calendar: how to change "In 2 days"?

      I’m fine with “Today” and “Tomorrow”, but I would like to see “17 Jul” instead of the current “In 2 days”.

      I think my config.js is correctly setup, but clearly the calendar still shows “In 2 days”.

      Not sure what to try next, some help is highly appreciated.

      Thanks,

      Tom

      alt text

      My config:

      module: "calendar",
      header: "Calendar",
      position: "top_right",
      config: {
      	fade: true,
      	fadePoint: 0.75,
      	colored: true,
      	timeFormat: "absolute",
      	dateFormat: "D MMM",
      	fullDayEventDateFormat: "D MMM",
      	urgency: 0,
      	getRelative: 0,
      	nextDaysRelative: true,
      	calendars: [
      		{
      			// Private
      			symbol: "chevron-circle-right",
      			color: "#ffcc00",
      			url: "https://calendar.google.com/calendar/ical/xxx/basic.ics"
      		},
      		{
      			// Birthdays
      			symbol: "grin-alt",
      			color: "#9966cc",
      			url: "https://calendar.google.com/calendar/ical/yyy/basic.ics"
      		},
      		{
      			// Work
      			symbol: "dot-circle",
      			color: "#3366ff",
      			url: "https://calendar.google.com/calendar/ical/zzz/basic.ics"
      		}
      		]
      	}
      
      
      posted in Troubleshooting
      T
      TomJC70