A macOS system monitor that displays real-time stats (CPU, memory, GPU, disk, network, etc.) on a USB LCD screen.
Uses the Thermalright Trofeo Vision LCD as the display device.
Copy the published application to /opt/stat/:
sudo mkdir -p /opt/stat
sudo cp -R ./publish/ /opt/stat/Create /Library/LaunchDaemons/stat.plist with the following content:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN"
"http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Label</key>
<string>MacStatDisplay</string>
<key>ProgramArguments</key>
<array>
<string>/opt/stat/MacStatDisplay</string>
</array>
<key>WorkingDirectory</key>
<string>/opt/stat</string>
<key>RunAtLoad</key>
<true/>
<key>KeepAlive</key>
<true/>
</dict>
</plist>sudo launchctl load /Library/LaunchDaemons/stat.plistTo unload:
sudo launchctl unload /Library/LaunchDaemons/stat.plist