The stupid system monitoring tool. Displays basic system information from the command line.
- Go 1.26 or later
make build # outputs binary to bin/whatchamacallit
# or
go build -o bin/whatchamacallit .# Display system information
whatchamacallit system infoExample output (Linux):
System
──────────────────────────────────────────
Operating System Platform linux
Operating System Version Ubuntu 24.04 LTS
Machine Hostname mymachine
UEFI Boot yes
Secure Boot yes
HVCI (Windows Only) no
User
──────────────────────────
Username jdoe
Display Name John Doe
User ID (UID) 1000
Group ID (GID) 1000
Home Directory /home/jdoe
Boolean fields are rendered as ✓ / ✗ in color-capable terminals.
make run # run without building
go build ./... # verify the whole codebase compiles
go test ./... # run all testsMIT © 2026 Muhammad Refansa Ali Muzky