MagicMirror Forum

    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • Donate
    • Discord
    1. Home
    2. gshimself
    G
    • Profile
    • Following 0
    • Followers 0
    • Topics 7
    • Posts 44
    • Best 1
    • Controversial 0
    • Groups 0

    gshimself

    @gshimself

    1
    Reputation
    1772
    Profile views
    44
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    gshimself Unfollow Follow

    Best posts made by gshimself

    • RE: Mouse Cursor Visible On Reboot

      @olliewarren411 Okey. Well it was long ago I did install my rasp. so I’ve might forgot how I did it. But do you have “unclutter” installed?
      http://raspberrypi.stackexchange.com/questions/2092/hide-cursor-in-raspbian

      posted in Troubleshooting
      G
      gshimself

    Latest posts made by gshimself

    • RE: MMM-Globe

      @Peter I use to have that, and that is when my SD card got full. do a

      df -h
      

      and see if the storage is full or not

      posted in Utilities
      G
      gshimself
    • RE: Modules doesn't show

      Just fyi, the “location” under module currentweather is within quote marks (") but I done goofed when I did “****” instead of my real location

      posted in Troubleshooting
      G
      gshimself
    • RE: Modules doesn't show

      @bhepler Ofc, here you go!

       *
       * By Michael Teeuw http://michaelteeuw.nl
       * MIT Licensed.
       */
      
      var config = {
              port: 8080,
              address: "0.0.0.0",
              ipWhitelist: [  "192.168.1.1/24",
                              "::fff:192.168.1.1/112",
                              "127.0.0.1",
                              "::ffff:127.0.0.1",
                              "::1",
                              "0.0.0.0",
                              "192.168.1.22"
                           ], // Set [] to allow all IP addresses.
      
              language: "sv",
              timeFormat: 24,
              units: "metric",
      
              modules: [
                      {
                              module: "alert",
                      },
                      {
                              module: "updatenotification",
                              position: "top_bar"
                      },
                      {
                              module: "clock",
                              position: "top_left"
                      },
                      {
                              module: "calendar",
                              header: "Min Kalender",
                              position: "top_left",
                              config: {
                                      colored: "true",
                                      calendars: [
                                              {
                                                      symbol: "calendar-check-o ",
                                                      url: "A-SUPER-SECRET-URL"
                                              }
                                      ]
                              }
                      },
                      {
                              module: "compliments",
                              position: "lower_third"
                      },
                      {
                              module: "currentweather",
                              position: "top_right",
                              config: {
                                      location: ****",
                                      locationID: "",  //ID from http://www.openweathermap.org/help/city_list.txt
                                      appid: "A-SUPER-SECRET-API"
                              }
                      },
                      {
                              module: "weatherforecast",
                              position: "top_right",
                              header: "Weather Forecast",
                              config: {
                                      colored: "true",
                                      location: "****",
                                      locationID: "",  //ID from http://www.openweathermap.org/help/city_list.txt
                                      appid: "A-SUPER-SECRET-API"
                              }
                      },
                      {
                              module: "newsfeed",
                              position: "bottom_bar",
                              config: {
                                      feeds: [
                                              {
                                                      title: "VK",
                                                      url: "http://www.vk.se/feed"
                                              },
                                              {
                                                      title: "Expressen",
                                                      url: "http://expressen.se/rss/nyheter"
                                                      //encoding: "ISO-8859-1",
                                              },
                                              {
                                                      title: "Krisinformation.se",
                                                      url: "https://www.krisinformation.se/nyheter/nyheter-som-rss",
                                                      encoding: "ISO-8859-1",
                                              }
      
      
                                      ],
                                      showSourceTitle: true,
                                      showPublishDate: true
                              }
                      },
      
      // EGNA MODULER NEDAN
      
      // Remote-Control
      {
          module: 'MMM-Remote-Control'
          // uncomment the following line to show the URL of the remote control on the mirror
          // , position: 'bottom_left'
          // you can hide this module afterwards from the remote control itself
      },
      
      // mmm-weatherchart
      
      {
              module: 'mmm-weatherchart',
              position: 'bottom_center', // this can be any of the regions
              config: {
                      country: 'Sverige', // as determined above
                      area: 'Västerbotten', // as determined above
                      city: '****', // as determined above
                      updateInterval: 60 * 60 * 1000, // update every hour
                      hideBorder: true, // whether or not a border with city name should be shown
                      }
      },
      
      
      // ???
      
      
      // SKRIV INGET NEDANFÖR
              ]
      
      };
      
      /*************** DO NOT EDIT THE LINE BELOW ***************/
      if (typeof module !== "undefined") {module.exports = config;}
      
      
      
      
      posted in Troubleshooting
      G
      gshimself
    • Modules doesn't show

      Hi! I have problems that Currentweather and Weatherforecast has gone away.
      Via MM-Remote I can see that they are offline due to “This module was hidden by module_5_currentweather, it can not be shown.” and “This module was hidden by module_6_weatherforecast, it can not be shown.” and I can’t get it to show again.

      Any ideas what I could do? It has worked before.

      posted in Troubleshooting
      G
      gshimself
    • RE: Error on update: "Please tell me who you are." ?

      Check this out:
      https://git-scm.com/book/en/v2/Getting-Started-First-Time-Git-Setup
      Read under “Your Identity”

      You need to do two commands and change everything that is in quote marks ("):

      1. git config --global user.email "Richard238@hotmail.com"
        
      2. git config --global user.name “Richard Doe”
        

      Does that makes sense? I had some trouble too at first

      posted in Troubleshooting
      G
      gshimself
    • RE: After update to Mirror to 2.1.3 - no working Whitlist

      Yea, same here

      posted in Troubleshooting
      G
      gshimself
    • RE: Compliments setup

      @Richard238 I live with the idea that “if it work, dont ask why”.
      So I can’t explain why config.js dont work.

      posted in Troubleshooting
      G
      gshimself
    • RE: Compliments setup

      Do you edit the config.js?
      Well… you could be a outlaw and edit the “~/MagicMirror/modules/default/compliments/compliments.js”.
      I’ve done that before and it works. But beware of typos. Make a backup! 🙂

      posted in Troubleshooting
      G
      gshimself
    • RE: [Remote-Control] Shutdown, Configure and Update your MagicMirror

      Dude, I just tried this for the first time.
      Holy shit, I love it! Nice work!

      posted in System
      G
      gshimself
    • RE: Autostart Issue and No Interface

      Hi. Can you do

      sudo cat /home/pi/MagicMirror/npm-debug.log

      and post some of that code?

      posted in Troubleshooting
      G
      gshimself