aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordacctal <dacctal@symlinx.net>2026-05-31 10:32:21 +0000
committerdacctal <dacctal@symlinx.net>2026-05-31 10:32:21 +0000
commit2ac621bdb341809baf1966be8652b3bea9cd6368 (patch)
tree667809986eb29e01c9dc169b4f1d9e495850ddf8
parent7238b079d9b1f40bd2879780444db638e50d1ed8 (diff)
added pre-install instructions for shells in README.md
-rw-r--r--README.md12
1 files changed, 12 insertions, 0 deletions
diff --git a/README.md b/README.md
index d6487ab..e471437 100644
--- a/README.md
+++ b/README.md
@@ -48,6 +48,18 @@ make install PREFIX="/path/to/install"
# Usage
## Installing Packages
+### Pre-installation
+Before you use any programs that you installed with pkgit, you need to specify the path of the binaries in your shell's configuration.
+```sh
+export PATH="$HOME/.local/bin:$PATH"
+```
+```fish
+fish_add_path $HOME/.local/bin
+```
+```csh
+setenv PATH $HOME/.local/bin:$PATH
+```
+
### Basic install
Assuming you have already added its respective repo, you can install a package by specifying its name:
```