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

    Posts

    Recent Best Controversial
    • RE: Rpi 4 and two monitors

      I wondered if I needed to update the ‘mm.sh’ file within the ‘installers’ folder, I tried changing this from ‘0’ to ‘1’ - reboot the RPI but on reboot MM does not get started on either monitor.


      pi@MagicMirrors:~/MagicMirror/installers $ tvservice --list
      2 attached device(s), display ID’s are :
      Display Number 2, type HDMI 0
      Display Number 7, type HDMI 1

      posted in Hardware
      N
      NathTheDude
    • RE: So then, what languages to learn?

      Thanks @cowboysdude and @strawberry-3-141, will start looking at those.

      posted in Development
      N
      NathTheDude
    • RE: Filter events on Calendar Module

      Hey @pedromrsantos,

      I know this post is quite old but I have just gotten around to setting up my new MM setup, not sure if filtering can be done with the standard calendar but it is possible with the module ‘MMM-CalendarExt2’.

      With this example I am able to filter out events that have ‘birthday’ in the title:

      filter: (event) =>{
        if (event.title.search(“Birthday”) > -1) {
          return true
        } else {
          return false
        }
      },
      

      On my setup I am importing 3 ics files and the displaying different views on my screen, one of them is a list of birthdays from three calendars.

      Let me know if you need more info.

      Cheers

      Nathan

      posted in Development
      N
      NathTheDude
    • 1 / 1