MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    A New Chapter for MagicMirror: The Community Takes the Lead
    Read the statement by Michael Teeuw here.

    MMM-SystemStats (cpu temp/load, fre ram ...)

    Scheduled Pinned Locked Moved Utilities
    74 Posts 36 Posters 63.6k Views 35 Watching
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • CyruS1337C Offline
      CyruS1337 Project Sponsor @Babene1
      last edited by

      @Babene1 It works for me too, thank you !!

      1 Reply Last reply Reply Quote 0
      • bheplerB Offline
        bhepler Module Developer @Babene1
        last edited by

        @Babene1 - Great work. Did you generate a PR for the module developer?

        B 1 Reply Last reply Reply Quote 0
        • B Offline
          Babene1 Project Sponsor @bhepler
          last edited by

          @bhepler it is a new release with the bugfix from MMM-SystemStats available

          1 Reply Last reply Reply Quote 0
          • C Offline
            chinesesich
            last edited by

            0_1560484638460_acaabf82-8175-4f0e-a869-906fe0f0cde0-image.png
            I have a mistake, as shown in the figure.
            It was good at first, but then it was. I don’t know why.

            StoffbeuteluweS F 2 Replies Last reply Reply Quote 0
            • StoffbeuteluweS Offline
              Stoffbeuteluwe Project Sponsor @chinesesich
              last edited by

              does the Module work on mac?

              C 1 Reply Last reply Reply Quote 0
              • C Offline
                chinesesich @Stoffbeuteluwe
                last edited by

                @Stoffbeuteluwe
                no
                on Raspberry Pi 2B

                1 Reply Last reply Reply Quote 0
                • F Offline
                  Fifin404 @chinesesich
                  last edited by

                  @chinesesich Same issue… something new?

                  lavolp3L 1 Reply Last reply Reply Quote 0
                  • lavolp3L Offline
                    lavolp3 Module Developer @Fifin404
                    last edited by

                    @Fifin404 @chinesesich The issue seems to be the change in version of Font Awesome icons.

                    Try changing line 122 in MMM-SystemStats.js

                            c2.innerHTML = `< i class="fa ${sysData[item].icon} fa-fw"></i>`;
                    

                    to

                            c2.innerHTML = `< i class="fas ${sysData[item].icon} fa-fw"></i>`;
                    

                    ONLY change the “fa” to “fas”.
                    The rest can stay the same.
                    Don’t copy my input! I neede to put in a space for it to be viewable.

                    How to troubleshoot modules
                    MMM-soccer v2, MMM-AVStock

                    1 Reply Last reply Reply Quote 0
                    • LordyL Offline
                      Lordy
                      last edited by

                      How can you only display individual parameters?
                      I just want to see “Free memory” for example.
                      Thank you very much in advance

                      lavolp3L 1 Reply Last reply Reply Quote 0
                      • lavolp3L Offline
                        lavolp3 Module Developer @Lordy
                        last edited by

                        @Lordy
                        if you mean free RAM, try this out in your custom.css

                        .MMM-SystemStats tr { 
                          display: none; 
                        }
                        
                        .MMM-SystemStats tr:nth-child(3n+0) { 
                          display: table-row; 
                        }
                        

                        For free disk space it would be

                        .MMM-SystemStats tr { 
                          display: none; 
                        }
                        
                        .MMM-SystemStats tr:nth-child(5n+0) { 
                          display: table-row; 
                        }
                        

                        No guarantees!! I haven’t tried it!!

                        How to troubleshoot modules
                        MMM-soccer v2, MMM-AVStock

                        LordyL 1 Reply Last reply Reply Quote 1
                        • 1
                        • 2
                        • 3
                        • 4
                        • 5
                        • 6
                        • 7
                        • 8
                        • 5 / 8
                        • First post
                          Last post
                        Enjoying MagicMirror? Please consider a donation!
                        MagicMirror created by Michael Teeuw.
                        Forum managed by Sam, technical setup by Karsten.
                        This forum is using NodeBB as its core | Contributors
                        Contact | Privacy Policy