From d120e12abe258daf5cb5e753a1d9c447440e780c Mon Sep 17 00:00:00 2001 From: David Thurstenson Date: Wed, 27 May 2020 12:08:11 -0500 Subject: [PATCH] Adding local bin dir to $PATH --- .bash_profile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.bash_profile b/.bash_profile index dff2451..070b3d6 100644 --- a/.bash_profile +++ b/.bash_profile @@ -7,7 +7,8 @@ # Do these things if in tty0-tty9 case $(tty) in /dev/tty[0-9]*) setleds -D +num # (numlock for X is set in ~/.xinitrc) - # Temporary fix for a systemd bug related to systemd --user timers that run on login - [[ -z "$DBUS_SESSION_BUS_ADDRESS" ]] && printf "%bWARNING: \$DBUS_SESSION_BUS_ADDRESS is unset! %b\n" "$(tput bold)$(tput setab 1)" "$(tput sgr0)" ;; esac + +# Add home bin folder to $PATH +PATH=$PATH:~/bin