diff --git a/pythonlib/README.md b/pythonlib/README.md
index cbcfc4c..90f209e 100644
--- a/pythonlib/README.md
+++ b/pythonlib/README.md
@@ -47,28 +47,211 @@ python3 -m camoufox fetch
To uninstall, run `camoufox remove`.
+---
+
+## Installing browser versions
+
+### UI Manager
+
+To use the gui, install the needed library:
+
+```bash
+pip install 'camoufox[gui]'
+```
+
+---
+
+### CLI Commands
+
CLI options
+See help message
```
-Usage: python -m camoufox [OPTIONS] COMMAND [ARGS]...
+$ python -m camoufox --help
-Options:
- --help Show this message and exit.
+ Usage: python -m camoufox [OPTIONS] COMMAND [ARGS]...
-Commands:
- fetch Fetch the latest version of Camoufox
- path Display the path to the Camoufox executable
- remove Remove all downloaded files
- server Launch a Playwright server
- test Open the Playwright inspector
- version Display the current version
+╭─ Options ─────────────────────────────────────────────────────────────────────────╮
+│ --help Show this message and exit. │
+╰───────────────────────────────────────────────────────────────────────────────────╯
+╭─ Commands ────────────────────────────────────────────────────────────────────────╮
+│ active Print the current active version │
+│ fetch Install the active version, or a specific version. │
+│ gui Launch the Camouman GUI (requires PySide6) │
+│ list List Camoufox versions. │
+│ path Print the install directory path │
+│ remove Remove installed version(s) │
+│ Or, pass a specifier to remove directly: │
+│ camoufox remove official/stable/134.0.2-beta.20 │
+│ server Launch a Playwright server │
+│ set Interactive selector for versions and settings │
+│ Or, pass a specifier to activate directly: │
+│ Pin version: camoufox set official/stable/134.0.2-beta.20 │
+│ Auto-update channel: camoufox set official/stable │
+│ sync Sync available versions from remote repositories. │
+│ test Open the Playwright inspector │
+│ version Display version info │
+╰───────────────────────────────────────────────────────────────────────────────────╯
```