├── .gitignore ├── .jscsrc ├── LICENSE ├── MMM-SystemStats.js ├── README.md ├── moment-duration-format.js ├── node_helper.js ├── package.json ├── screenshot.png └── translations ├── de.json ├── en.json ├── fr.json ├── id.json └── sv.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /.jscsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenRoe/MMM-SystemStats/HEAD/.jscsrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenRoe/MMM-SystemStats/HEAD/LICENSE -------------------------------------------------------------------------------- /MMM-SystemStats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenRoe/MMM-SystemStats/HEAD/MMM-SystemStats.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenRoe/MMM-SystemStats/HEAD/README.md -------------------------------------------------------------------------------- /moment-duration-format.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenRoe/MMM-SystemStats/HEAD/moment-duration-format.js -------------------------------------------------------------------------------- /node_helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenRoe/MMM-SystemStats/HEAD/node_helper.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenRoe/MMM-SystemStats/HEAD/package.json -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenRoe/MMM-SystemStats/HEAD/screenshot.png -------------------------------------------------------------------------------- /translations/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenRoe/MMM-SystemStats/HEAD/translations/de.json -------------------------------------------------------------------------------- /translations/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenRoe/MMM-SystemStats/HEAD/translations/en.json -------------------------------------------------------------------------------- /translations/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenRoe/MMM-SystemStats/HEAD/translations/fr.json -------------------------------------------------------------------------------- /translations/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenRoe/MMM-SystemStats/HEAD/translations/id.json -------------------------------------------------------------------------------- /translations/sv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenRoe/MMM-SystemStats/HEAD/translations/sv.json --------------------------------------------------------------------------------