update docs
authorAJ ONeal <aj@therootcompany.com>
Thu, 9 Jul 2020 11:54:13 +0000 (11:54 +0000)
committerAJ ONeal <aj@therootcompany.com>
Thu, 9 Jul 2020 11:54:13 +0000 (11:54 +0000)
webi/README.md

index 0cde5be68df80ce81bc8fb25dfa3ea0fc8a8e207..5680034dd453ccb25e9f409fb2383471763a0bea 100644 (file)
@@ -17,7 +17,7 @@ Since `webi` is just a small helper script, it's always update on each use.
 
 > `webi` is what you would have created if you automated how you install your
 > common tools yourself: Simple, direct downloads from official sources,
-> unpacked into `$HOME/.local`, added to `PATH`, symlinked for easy version
+> unpacked into `~/.local`, added to `PATH`, symlinked for easy version
 > switching, with minimal niceties like resuming downloads and 'stable' tags.
 
 - Easy to remember.
@@ -34,25 +34,33 @@ Or via `webi`, the tiny `curl | bash` shortcut command that comes with each
 install:
 
 ```bash
-webi node@latest
+webi node@lts golang@stable flutter@beta rustlang
 ```
 
+### webi PATHs
+
+You can see exactly what PATHs have been edited:
+
 ```bash
-webi golang@v1.14
+pathman list
 ```
 
+And where:
+
 ```bash
-webi rustlang
+cat ~/.config/envman/PATH.env
 ```
 
-You can see exactly what PATHs have been edited:
+### Uninstall `webi`
+
+`webi` uses standard paths and touches very little.
 
 ```bash
-pathman list
+rm -rf ~/.local/opt ~/.local/bin
 ```
 
-And where:
+If you haven't used `pathman` for anything else, you can also remove its config:
 
 ```bash
-cat $HOME/.config/envman/PATH.env
+rm -f ~/.config/envman/PATH.env
 ```