From 524e5132ba35dc1da871f509d81240af3846ebe0 Mon Sep 17 00:00:00 2001 From: Joe Groocock Date: Sat, 31 Jul 2021 00:08:02 +0000 Subject: [PATCH] environment: add ~/.local/bin to $PATH Python's pip amongst other things likes to put binaries in here. Signed-off-by: Joe Groocock --- environment.d/10-profile.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/environment.d/10-profile.conf b/environment.d/10-profile.conf index 96e5313..f14b5cc 100644 --- a/environment.d/10-profile.conf +++ b/environment.d/10-profile.conf @@ -9,6 +9,6 @@ XDG_DATA_HOME="${XDG_DATA_HOME:-$HOME/.local/share}" EDITOR="vim" VISUAL="vim" -PATH="${PATH}:/sbin:/usr/sbin:${XDG_CONFIG_HOME}/scripts" +PATH="${PATH}:/sbin:/usr/sbin:${HOME}/.local/bin:${XDG_CONFIG_HOME}/scripts" # vim: ft=sh