Skip to content

usausa/mac-stat-display

Repository files navigation

Mac Stat Display

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.

Display

⚙️Installation

1. Deploy the application

Copy the published application to /opt/stat/:

sudo mkdir -p /opt/stat
sudo cp -R ./publish/ /opt/stat/

2. Create a launch daemon

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>

3. Load the daemon

sudo launchctl load /Library/LaunchDaemons/stat.plist

To unload:

sudo launchctl unload /Library/LaunchDaemons/stat.plist

🌐Link

About

macOS system monitor powered by .NET

Topics

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Contributors

Languages