InfraBuddy Resource Monitor does exactly that - monitors your system's hardware usage and reports it back to you.
Please read the license associated to this repository. You are required to post any edits or changes.

- Create the Directory:
sudo mkdir /etc/infrabuddy
- Move infrabuddy executable and config.toml into directory.
- Give Execute Permissions:
sudo chmod +x /etc/infrabuddy/infrabuddy
- Create the Service File:
sudo nano /etc/systemd/system/infrabuddy.service
- Paste into Service File:
[Unit]
Description=InfraBuddy Resource Monitor
After=network.target
Wants=network-online.target
[Service]
Restart=no
Type=simple
ExecStart=/etc/infrabuddy/infrabuddy
WorkingDirectory=/etc/infrabuddy
[Install]
WantedBy=multi-user.target
- Enable the Service:
sudo systemctl enable --now infrabuddy
- Start the Service:
sudo systemctl start infrabuddy