]> arthur.barton.de Git - ax-zsh.git/commitdiff
Add ~/.local/bin and /usr/local/games to search path
authorAlexander Barton <alex@barton.de>
Sat, 9 Jul 2016 15:02:10 +0000 (17:02 +0200)
committerAlexander Barton <alex@barton.de>
Sat, 9 Jul 2016 15:02:10 +0000 (17:02 +0200)
core/40_path/40_path.zprofile

index 4a5e7cfaa3b97d369b25f82c657a8fb90e0c5412..ad3179f26b547c5825c39a752f4d1ef9dedaa3ce 100644 (file)
@@ -18,6 +18,7 @@ for d (
        /usr/local/sbin
        /opt/*/bin(NOn)
        /opt/*/sbin(NOn)
+       ~/.local/bin
        ~/Applications(N)
 ); do
        [ -d "$d" ] && path=("$d" $path)
@@ -26,6 +27,7 @@ done
 # Append additional search paths
 for d (
        /usr/X11/bin
+       /usr/local/games
        /usr/games
 ); do
        [ -d "$d" ] && path=($path "$d")