SolarVox Monitor Documentation

Overview

SolarVox Monitor is a system monitoring tool built on Electron and Node.js. It provides real-time CPU, RAM, disk usage, temperature readings, and process management with notifications.

Getting Started

Install the application for your OS and run the executable or AppImage file. The monitor automatically runs in the system tray and provides notifications.

Core Modules

Installation (Linux AppImage Example)

chmod +x "SolarVox Monitor-1.0.0.AppImage"
./"SolarVox Monitor-1.0.0.AppImage"

Example Code Snippet

const { app, BrowserWindow, ipcMain, Tray, Menu, Notification } = require('electron');

app.whenReady().then(() => {
  const win = new BrowserWindow({ width: 800, height: 600 });
  win.loadFile('index.html');
  new Notification({ title: 'SolarVox', body: 'Monitoring started' }).show();
});

IPC Commands

Tips