A lightweight CLI tool that combines multiple simple utilities into one binary.
Built to learn Go — kept simple by design.
| Tool | Description |
|---|---|
| Timer | Count up from zero |
| Countdown | Count down from a given time |
| ASCII Clock | Live clock in your terminal (v1 & v2) |
| Matrix | Prints 0's and 1's pseudo random |
| ASCII Animations | Collection of simple ASCII animations |
| Grade Calculator | Calculate your grade from scores |
| Odd/Even Checker | Check if a number is odd or even |
| SimpleChat | Connect to a chat server and talk |
| Coin Flip | Flip a coin |
| Unit Converter | Convert between common units |
| + more | Growing daily |
Download the binary for your platform, unzip and run:
./simpleappsThe installer sets up SimpleApps system-wide and installs the bundled terminal (st with JetBrains Mono):
./install.shThen run from anywhere:
simpleappsLaunch SimpleApps with its own built-in terminal:
simpleapps-gui| Platform | Link |
|---|---|
| Linux AMD64 | Download |
| Windows AMD64 | Download |
| Source | Download |
Windows/Linux ARM coming soon.
SimpleChat is the built-in chat tool. It's intentionally minimal — no accounts, no history, just connect and talk.
Connect to a server:
simpleapps
# select SimpleChat
# Enter server IP or domain when promptedHost your own server: Download the SimpleChat.zip, extract it, navigate in the folder and run
go run main.goThe server broadcasts every message to all connected clients over WebSocket. That's it.
git clone https://github.com/Luis-Harz/SimpleApps
cd SimpleApps
go run main.go
# or
go build main.go
./mainSimpleApps updates roughly daily around 5pm GMT+1.
Check the releases page or the website for the latest version.
If you can't explain what a tool does in one sentence, it doesn't belong in SimpleApps.
Every tool is kept as simple as possible. No unnecessary features, no bloat.
SimpleApps is under the MIT License. The bundled terminal is st by suckless(also MIT License) — see the installer for both licenses.