diff options
| author | Patrick Spek <p.spek@tyil.nl> | 2026-05-19 09:31:33 +0200 |
|---|---|---|
| committer | Patrick Spek <p.spek@tyil.nl> | 2026-05-19 09:31:33 +0200 |
| commit | a3f71e7f1241924a7c585dab4b977c49faa11da1 (patch) | |
| tree | aa6afe309ebcf26f069da0b6a7c407100697b9d4 | |
| parent | ba7402756f2eff7cefdd47dd00163ca7c9c0f5df (diff) | |
| download | dotfiles-a3f71e7f1241924a7c585dab4b977c49faa11da1.tar.gz dotfiles-a3f71e7f1241924a7c585dab4b977c49faa11da1.tar.bz2 | |
Add portage prefix paths
| -rw-r--r-- | .config/shell/sources | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/.config/shell/sources b/.config/shell/sources index a7cd82e..75db3a1 100644 --- a/.config/shell/sources +++ b/.config/shell/sources @@ -15,6 +15,15 @@ then PATH="$PATH:/snap/bin" fi +# Portage Prefix +if [ -d "$HOME/.local/portage" ] +then + PATH="$PATH:$HOME/.local/portage/usr/local/sbin" + PATH="$PATH:$HOME/.local/portage/usr/local/bin" + PATH="$PATH:$HOME/.local/portage/usr/bin" + PATH="$PATH:$HOME/.local/portage/opt/bin" +fi + # Raku stuff if [ -d "$HOME/.raku/bin" ] then |
