From fb88d105ea4cbc0943d2164fae6d9776e01de32e Mon Sep 17 00:00:00 2001 From: SqrtMinusOne Date: Wed, 30 Mar 2022 14:48:38 +0300 Subject: [PATCH] feat(console): add $HOME/.local/bin to $PATH --- .profile | 4 ++++ Console.org | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/.profile b/.profile index 3ab0f09..47f03b1 100644 --- a/.profile +++ b/.profile @@ -23,6 +23,10 @@ if [ -d "$HOME/bin" ] ; then export PATH="$HOME/bin:$PATH" export PATH="$HOME/bin/scripts:$PATH" fi + +if [ -d "$HOME/.local/bin" ] ; then + export PATH="$HOME/.local/bin:$PATH" +fi # My paths:1 ends here # [[file:Console.org::*Guix settings][Guix settings:1]] diff --git a/Console.org b/Console.org index 51a7a74..9dff775 100644 --- a/Console.org +++ b/Console.org @@ -81,6 +81,10 @@ if [ -d "$HOME/bin" ] ; then export PATH="$HOME/bin:$PATH" export PATH="$HOME/bin/scripts:$PATH" fi + +if [ -d "$HOME/.local/bin" ] ; then + export PATH="$HOME/.local/bin:$PATH" +fi #+end_src ** Guix settings