Skip to content

dientuki/MMM-SystemInfo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MMM-SystemInfo

Magic Mirror Module that displays a lot of useful info as:

  • CPU load
  • RAM usage
  • Disk usage
  • CPU temperature
  • Volume
  • Internet status
  • Private ip
  • Wifi network to share

Note that if you have special characters in your password, the QR code will not work. This is because I haven't done the work required to escape the special characters properly.

Disclaimer:

  • The WifiPassword is mostly this module, I just add it to this module.
  • Internet status is "bassed" on this module

Screenshot

MMM-SystemInfo Screenshot Compact Full example

Installation

  1. In your terminal, change to your Magic Mirror module directory

cd ~/MagicMirror/modules

  1. Clone this repository git clone https://github.com/dientuki/MMM-SystemInfo.git

  2. Make changes to your config.js file.

How to use this module

As with other MM modules, add this array to the config/config.js file

modules:[
  {
    module: 'MMM-SystemInfo',
    position: "bottom_right",
      config: {
        //See 'Configuration options' for more information.
      }
  },
]

Configuration Options

Wifi

Option Description Default
qrSize The width and height of QRCode in pixels.
Type: int
125
authType Your authentication type.
Options: WPA WEP NONE
WPA
network Your network SSID.
Type: string
REQUIRED
password Your network Password.
Type: string
REQUIRED
hiddenId Whether your SSID is hidden.
Type: boolean
false
wifiDataCompact How to display your netkwork info, full (several lines) or compact (one line, just the data).
Type: boolean
false
showNetwork Show network SSID.
Type: boolean
true
showPassword Show your network password.
Type: boolean
true
showAuthType Show your authentication type.
Type: boolean
true

Stats

There are several ways to get the stats, it may vary according to your SO or custom instalattion... so, here is the catch. Just add the command thats works for you buddy. I put as example the commands that im using on my ubunut linux on my old pc, but check every command in your enviroment. Addionally, you can set showSTAT to false and omit the stat to show, it is usefull is any value is wrong and you want to avoid dealing with that stat

Option Description Default
showCpuUsage Show your CPU usage.
Type: boolean
true
cpuUsageCommand Command to get the cpu usage.
Example:awk '/^%Cpu/{gsub(/,/, ".", $8); print 100 - $8}' <(top -b -n 1)
Type: string

Design

Option Description Default
layout The order of the QR and table, usefull is you want to use it at right or left corners
ltr: QR box | Stats
rtl: Stats | QR box
Options: ltr rtl
ltr
connectedColor Color to use as ok status.
Type: string
#008000
disconnectedColor Color to use as fail status.
Type: string
#ff0000
wifiDataCompact How to display your netkwork info, full (several lines) or compact (one line, just the data).
Type: boolean
false
units Use either 'metric' or 'imperial' to display the temperature.
Options: metric imperial
Inherit from config.js
updateInterval How often does the content needs to be fetched? (Milliseconds)
Type: int
2000
decimal How much decimal numbers want to show
Type: int
1

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published