dotfiles

My personal shell configs and stuff
git clone git://git.alex.balgavy.eu/dotfiles.git
Log | Files | Refs | Submodules | README | LICENSE

commit 50281cfb09830bc40f6307de95854a30e3f034bd
parent c2f5ae194eb4665a8ec6e39f706ed926c3ab4e28
Author: Alex Balgavy <a.balgavy@gmail.com>
Date:   Tue, 29 Sep 2020 13:12:34 +0200

shell: add mac linux utils to path (e.g. setsid)

Former-commit-id: 5b0bcb6dc5385dc2aa70294204ffd713e2e53f24
Diffstat:
Mshell/profile | 3+++
1 file changed, 3 insertions(+), 0 deletions(-)

diff --git a/shell/profile b/shell/profile @@ -39,6 +39,9 @@ fi if [ -d "$HOME/go/bin" ] ; then PATH="$HOME/go/bin:$PATH" fi +if [ -d "/usr/local/opt/util-linux/bin" ] ; then + PATH="/usr/local/opt/util-linux/bin:$PATH" +fi if [ -f "$HOME/.secret_env_variables" ] ; then . "$HOME/.secret_env_variables" fi