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

    StrikeBack83

    @StrikeBack83

    1
    Reputation
    573
    Profile views
    8
    Posts
    0
    Followers
    0
    Following
    Joined
    Last Online

    StrikeBack83 Unfollow Follow

    Best posts made by StrikeBack83

    • RE: Calendar overlapping problem

      @Mykle1 said in Calendar overlapping problem:

      displaySymbol: false,

      THANKS! I’ve overseen this config option ;-)
      My bad!

      posted in Troubleshooting
      S
      StrikeBack83

    Latest posts made by StrikeBack83

    • RE: Magic mirror keeps turning blank

      Easy… just install xscreensaver with
      sudo apt-get install xscreensaver
      then go to screensaver preferences and disable the screensaver, thats all.

      posted in Troubleshooting
      S
      StrikeBack83
    • RE: Newsfeed "ignoreOldItems" does not work

      Hi,
      If

      showSourceTitle: true,
      showPublishDate: true,
      

      is true by default i’m going to delete it completely.
      I’ll try the “ignoreOldItems: true” without quote marks when i get home!
      Thanks!

      Edit: Seems like it’s working at the moment. Obviously it was the “true” in quots.

      posted in Troubleshooting
      S
      StrikeBack83
    • Newsfeed "ignoreOldItems" does not work

      Hi,
      my config says to ignore items older than 14 hours (50400000ms),
      but that does not work. I still see news older than this.

      Heres my newsfeed module:

               {
                module: "newsfeed",
                position: "bottom_bar",
                showSourceTitle: true,
                showPublishDate: true,
                config: {
                         feeds: [
                                {
                                 title: "Kurier",
                                 url: "http://kurier.at/xml/rssd"
                                },
                                {
                                 title: "Der Standard",
                                 url: "http://derStandard.at/?page=rss&ressort=Seite1"
                                },
                                {
                                 title: "Giga",
                                 url: "http://www.giga.de/feed/"
                                }
                                ],
                         ignoreOldItems: "true",
                         ignoreOlderThan: 50400000,
                         updateInterval: 20000
                        }
               }
      
      posted in Troubleshooting
      S
      StrikeBack83
    • RE: Calendar overlapping problem

      @Mykle1 said in Calendar overlapping problem:

      displaySymbol: false,

      THANKS! I’ve overseen this config option ;-)
      My bad!

      posted in Troubleshooting
      S
      StrikeBack83
    • RE: Calendar overlapping problem

      Ok, i made the changes. Still no calendar entries hmmm!?

      config.js

      var config = {
                    port: 8080,
                    ipWhitelist: ["127.0.0.1", "::ffff:127.0.0.1", "::1"], // Set [] to allow all IP addresses
                                                                           // or add a specific IPv4 of 192.168.1.5 :
                                                                           // ["127.0.0.1", "::ffff:127.0.0.1", "::1", "::ffff:192.168.1.5"],
                                                                           // or IPv4 range of 192.168.3.0 --> 192.168.3.15 use CIDR format :
                                                                           // ["127.0.0.1", "::ffff:127.0.0.1", "::1", "::ffff:192.168.3.0/28"],
      
                    language: "de",
                    timeFormat: 24,
                    units: "metric",
      
      modules: [
               {
                module: "alert"
               },
      
               {
                module: "updatenotification",
                position: "top_bar"
               },
      
               {
                module: "clock",
                position: "top_left"
               },
      
               {
                module: "calendar",
                header: "Österreichische Feiertage",
                position: "top_left",
                config: {
                         timeFormat: "absolute",
                         maxTitleLength: 17,
                         maximumNumberOfDays: 7,
                         dateFormat: "DD MMM",
                         fullDayEventDateFormat: "DD MMM",
                         urgency: 0,
                         getRelative: 0,
                         calendars: [
                                    {
                                     url: "https://www.ferienwiki.at/exports/feiertage/2017/at/wien"
                                    }
                                    ]
                        }
               },
      
               {
                module: "compliments",
                position: "lower_third",
                config: {
                         compliments: {
                                       "day_sunny" : [
                                       "Heute ist ein sonniger Tag",
                                       "Heute ist ein schöner Tag"
                                                     ],
                                       "snow" : [
                                       "Schneeball Schlacht!"
                                                ],
                                       "rain" : [
                                       "Regenschirm nicht vergessen"
                                                ],
                                       "anytime" : [
                                       "Hi Sexy!"
                                                   ],
                                       "morning" : [
                                       "Guten morgen, Sonnenschein!",
                                       "Gut geschlafen?",
                                       "Alles was du tun willst schaffst du!",
                                       "Wer braucht Kaffee wenn er dein Lächeln hat? :-)"
                                                   ],
                                       "afternoon" : [
                                       "Du machst den Unterschied!"
                                                     ],
                                       "evening" : [
                                       "Du hast heute jemanden zum lachen gebracht :-)",
                                       "Du machst den Unterschied!"
                                                   ]
                                      }
                        }
               },
      
               {
                module: "currentweather",
                position: "top_right",
                config: {
                         location: "",
                         locationID: "2761369",  //ID from http://www.openweathermap.org/help/city_list.txt
                         appid: ""
                        }
               },
      
               {
                module: "weatherforecast",
                position: "top_right",
                header: "Weather Forecast",
                config: {
                         location: "",
                         locationID: "2761369",  //ID from http://www.openweathermap.org/help/city_list.txt
                         appid: "",
                         colored: "true"
                        }
               },
      
               {
                module: "newsfeed",
                position: "bottom_bar",
      		  showSourceTitle: true,
                showPublishDate: true,
                config: {
                         feeds: [
                                {
                                 title: "Kurier",
                                 url: "http://kurier.at/xml/rssd"
                                },
                                {
                                 title: "Der Standard",
                                 url: "http://derStandard.at/?page=rss&ressort=Seite1"
                                },
                                {
                                 title: "Giga",
                                 url: "http://www.giga.de/feed/"
                                }
                                ]
                        }
               }
      
      ] //module wird geschlossen
      }; //config wird geschlossen
      
      /*************** DO NOT EDIT THE LINE BELOW ***************/
      if (typeof module !== "undefined") {module.exports = config;}
      
      

      custom.css

       body {
       margin: 10px;
       height: calc(100% - 20px);
       width: calc(100% - 20px);
      }
      .calendar .symbol {
        display: none;
      }
      

      Any idea?

      posted in Troubleshooting
      S
      StrikeBack83
    • RE: Calendar overlapping problem

      .calendar .symbol {
      display: none;
      }

      @strawberry 3.141
      Made all changes and they worked very well, thanks!

      @Mykle1
      I add this in the body in custom.css right?
      I made this change and now i get no entries for my calendar at all.

      posted in Troubleshooting
      S
      StrikeBack83
    • RE: Calendar overlapping problem

      Great thanks for your help!
      I’ll try this as soon as i get home.
      Do you know how to remove the symbol in front of each entry?
      Best regards,
      Gery

      posted in Troubleshooting
      S
      StrikeBack83
    • Calendar overlapping problem

      Hi everyone,
      as you can see on the attached picture, my calendar is overlapping with weather forecast module.
      I tried to show absolute Dates like “30 Jan”, not “In one month”, but it’s not working.
      And, as you can see, the line under the calendar module is underneath the weather forecast module… why are they not at the same height, aligned correctly?
      I’m using an old netbook screen with a low resolution of 1024x600 rotatet.

      var config = {
      port: 8080,
      ipWhitelist: ["127.0.0.1", "::ffff:127.0.0.1", "::1"], // Set [] to allow all IP addresses
      // or add a specific IPv4 of 192.168.1.5 :
      // ["127.0.0.1", "::ffff:127.0.0.1", "::1", "::ffff:192.168.1.5"],
      // or IPv4 range of 192.168.3.0 --> 192.168.3.15 use CIDR format :
      // ["127.0.0.1", "::ffff:127.0.0.1", "::1", "::ffff:192.168.3.0/28"],
      
      language: "de",
      timeFormat: 24,
      units: "metric",
      
      modules: [
      {
      module: "alert"
      },
      
      {
      module: "updatenotification",
      position: "top_bar"
      },
      
      {
      module: "clock",
      position: "top_left"
      },
      
      {
      module: "calendar",
      header: "Österreichische Feiertage",
      position: "top_left",
      timeFormat: "absolute",
      maxTitleLength: 17,
      maximumNumberOfDays: 7,
      dateFormat: "DD MMM",
      fullDayEventDateFormat: "DD MMM",
      urgency: 0,
      getRelative: 0,
      config: {
      calendars: [
      {
      //symbol: "calendar-check-o ",
      url: "https://www.ferienwiki.at/exports/feiertage/2017/at/wien"
      }
      ]
      }
      },
      
      {
      module: "compliments",
      position: "lower_third",
      config: {
      compliments: {
      "day_sunny" : [
      "Heute ist ein sonniger Tag",
      "Heute ist ein schöner Tag"
      ],
      "snow" : [
      "Schneeball Schlacht!"
      ],
      "rain" : [
      "Regenschirm nicht vergessen"
      ],
      "anytime" : [
      "Hi Sexy!"
      ],
      "morning" : [
      "Guten morgen, Sonnenschein!",
      "Gut geschlafen?",
      "Wer braucht Kaffee wenn er dein Lächeln hat? :-)"
      ],
      "afternoon" : [
      "Hitting your stride!",
      "Du machst den Unterschied!"
      ],
      "evening" : [
      "Du hast heute jemanden zum lachen gebracht :-)",
      "Du machst den Unterschied!"
      ]
      }
      }
      },
      
      {
      module: "currentweather",
      position: "top_right",
      config: {
      location: "",
      locationID: "2761369",  //ID from http://www.openweathermap.org/help/city_list.txt
      appid: ""
      }
      },
      
      {
      module: "weatherforecast",
      position: "top_right",
      header: "Weather Forecast",
      config: {
      location: "",
      locationID: "2761369",  //ID from http://www.openweathermap.org/help/city_list.txt
      appid: "",
      colored: "true"
      }
      },
      
      {
      module: "newsfeed",
      position: "bottom_bar",
      config: {
      feeds: [
      {
      title: "Kurier",
      url: "http://kurier.at/xml/rssd"
      },
      {
      title: "Der Standard",
      url: "http://derStandard.at/?page=rss&ressort=Seite1"
      },
      {
      title: "Giga",
      url: "http://www.giga.de/feed/"
      }
      ],
      showSourceTitle: true,
      showPublishDate: true
      }
      }
      
      ] //module wird geschlossen
      }; //config wird geschlossen
      
      /*************** DO NOT EDIT THE LINE BELOW ***************/
      if (typeof module !== "undefined") {module.exports = config;}
      

      Thanks in advanced,
      Gery!

      PS: I tried to get rid of the icon bevore each calendar entry by supressing the symbol config, it didn’t work.
      0_1499840198878_14998339829310.jpg

      posted in Troubleshooting
      S
      StrikeBack83