├── .gitignore ├── .npm_ignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── Makefile ├── README.md ├── app.js ├── bin └── vtop.js ├── docs └── example.gif ├── package.json ├── sensors ├── cpu.js ├── memory.js └── process.js ├── themes ├── acid.json ├── acid.png ├── becca.json ├── becca.png ├── brew.json ├── brew.png ├── certs.json ├── certs.png ├── dark.json ├── dark.png ├── gooey.json ├── gruvbox.json ├── monokai.json ├── monokai.png ├── nord.json ├── nord.png ├── parallax.json ├── seti.json ├── wizard.json └── wizard.png ├── upgrade.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | node_modules/ 3 | npm-debug.log 4 | -------------------------------------------------------------------------------- /.npm_ignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrRio/vtop/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrRio/vtop/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrRio/vtop/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrRio/vtop/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrRio/vtop/HEAD/README.md -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrRio/vtop/HEAD/app.js -------------------------------------------------------------------------------- /bin/vtop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrRio/vtop/HEAD/bin/vtop.js -------------------------------------------------------------------------------- /docs/example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrRio/vtop/HEAD/docs/example.gif -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrRio/vtop/HEAD/package.json -------------------------------------------------------------------------------- /sensors/cpu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrRio/vtop/HEAD/sensors/cpu.js -------------------------------------------------------------------------------- /sensors/memory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrRio/vtop/HEAD/sensors/memory.js -------------------------------------------------------------------------------- /sensors/process.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrRio/vtop/HEAD/sensors/process.js -------------------------------------------------------------------------------- /themes/acid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrRio/vtop/HEAD/themes/acid.json -------------------------------------------------------------------------------- /themes/acid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrRio/vtop/HEAD/themes/acid.png -------------------------------------------------------------------------------- /themes/becca.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrRio/vtop/HEAD/themes/becca.json -------------------------------------------------------------------------------- /themes/becca.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrRio/vtop/HEAD/themes/becca.png -------------------------------------------------------------------------------- /themes/brew.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrRio/vtop/HEAD/themes/brew.json -------------------------------------------------------------------------------- /themes/brew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrRio/vtop/HEAD/themes/brew.png -------------------------------------------------------------------------------- /themes/certs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrRio/vtop/HEAD/themes/certs.json -------------------------------------------------------------------------------- /themes/certs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrRio/vtop/HEAD/themes/certs.png -------------------------------------------------------------------------------- /themes/dark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrRio/vtop/HEAD/themes/dark.json -------------------------------------------------------------------------------- /themes/dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrRio/vtop/HEAD/themes/dark.png -------------------------------------------------------------------------------- /themes/gooey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrRio/vtop/HEAD/themes/gooey.json -------------------------------------------------------------------------------- /themes/gruvbox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrRio/vtop/HEAD/themes/gruvbox.json -------------------------------------------------------------------------------- /themes/monokai.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrRio/vtop/HEAD/themes/monokai.json -------------------------------------------------------------------------------- /themes/monokai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrRio/vtop/HEAD/themes/monokai.png -------------------------------------------------------------------------------- /themes/nord.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrRio/vtop/HEAD/themes/nord.json -------------------------------------------------------------------------------- /themes/nord.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrRio/vtop/HEAD/themes/nord.png -------------------------------------------------------------------------------- /themes/parallax.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrRio/vtop/HEAD/themes/parallax.json -------------------------------------------------------------------------------- /themes/seti.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrRio/vtop/HEAD/themes/seti.json -------------------------------------------------------------------------------- /themes/wizard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrRio/vtop/HEAD/themes/wizard.json -------------------------------------------------------------------------------- /themes/wizard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrRio/vtop/HEAD/themes/wizard.png -------------------------------------------------------------------------------- /upgrade.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrRio/vtop/HEAD/upgrade.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrRio/vtop/HEAD/yarn.lock --------------------------------------------------------------------------------