diff --git a/README.md b/README.md
index cd8776e..5ee19bb 100644
--- a/README.md
+++ b/README.md
@@ -1,8 +1,10 @@
# MacNetStatsTerm
+[](https://github.com/okturan/MacNetStatsTerm/actions/workflows/ci.yml)
+
A small, interactive macOS terminal dashboard for the active network interface. It reads the system's cumulative byte counters once per second and displays current download and upload throughput without making network requests or leaving output in terminal scrollback.
-
+
## What it does
@@ -33,6 +35,24 @@ cd MacNetStatsTerm
The repository tracks `netmon.sh` as executable. Press Control+C to stop; the original terminal screen and cursor are restored.
+### Install for the current user
+
+After cloning, install the tested script under a user-owned executable directory:
+
+```bash
+mkdir -p "$HOME/.local/bin"
+install -m 0755 netmon.sh "$HOME/.local/bin/macnetstats"
+"$HOME/.local/bin/macnetstats"
+```
+
+Add `$HOME/.local/bin` to `PATH` if you want to run it as `macnetstats`. Remove the installed copy with:
+
+```bash
+rm "$HOME/.local/bin/macnetstats"
+```
+
+There is no packaged release or Homebrew formula yet. The default branch and its green macOS CI are the current distribution source; a versioned release remains a separate maintainer decision.
+
### Select an interface explicitly
Automatic detection uses the local default route. To monitor another interface:
diff --git a/docs/macnetstats-terminal.jpg b/docs/macnetstats-terminal.jpg
new file mode 100644
index 0000000..a9a5c9d
Binary files /dev/null and b/docs/macnetstats-terminal.jpg differ
diff --git a/screenshot.jpg b/screenshot.jpg
deleted file mode 100644
index 7d95257..0000000
Binary files a/screenshot.jpg and /dev/null differ