This project, go-anime-matrix-io
, is a Go-based utility that fetches system performance data (CPU temperature and fan speeds) and displays it on an ASUS Anime Matrix display. It works by retrieving system sensor data at regular intervals, and generates a GIF that is displayed on the Anime Matrix display. This utility has been tested to work on systems running ASUS hardware with an Anime Matrix display and the asusctl
utility installed.
It is using Fyne as GUI framework, and the PixelMix font for the text that renders into the out.gif
, which is being displayed on the Anime Matrix display.
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes.
In order to run this project, you must have the following installed:
- Go (version 1.16 or later)
- ASUS system with Anime Matrix display
asusctl
utility from asus-linux.orglm-sensors
utility
You can install asusctl
and lm-sensors
using the package manager for your system. For Ubuntu-based systems, you would use:
sudo apt install lm-sensors
asusctl
was installed on my Ubuntu machine while following their build instructions. You can find the instructions for installing asusctl
on their GitLab page
In order to get started the fastest, you could run the following commands to fetch the executable, make it executable and thereafter running it. As followed:
wget https://github.com/jackbillstrom/go-anime-matrix-io/releases/download/v.1.1-beta/go-anime-matrix-io-v1.1-beta # download executable
sudo chmod +x go-anime-matrix-io-v1.1-beta # make executable
./go-anime-matrix-io-v1.1-beta # run the executable
To get a copy of this project, you can clone it from GitHub using the following command:
git clone https://github.com/jackbillstrom/go-anime-matrix-io.git
After cloning the project, navigate into the project directory:
cd go-anime-matrix-io
You can then build the project using Go:
go build
Once you have built the project, you can run it using:
./go-anime-matrix-io
The program is designed to handle crashes gracefully. If the program crashes or is forcefully terminated, it will automatically clear and stop usage of the anime matrix. If the screen does not turn off after the program has crashed, you can run the following command to turn it off:
asusctl anime -e false
- 🧹 Refactor code
- Add support for other systems (Windows)
- Add support for other Anime Matrix displays
- Better error handling
- Better layout for the matrix display
- Multiple themes
We welcome contributions from the community. If you would like to contribute, please fork the repository and submit a pull request.
This project, except the PixelMix font is licensed under the MIT License — See the LICENSE.md file for details.
Credits to Andrew Tyler for the font PixelMix - Personal use
Thank you to everyone who has contributed to the development and testing of this project. Your time and efforts are greatly appreciated.