From 1bc958b6220ba31b12e2f7410d477ce39395f606 Mon Sep 17 00:00:00 2001 From: Trysdyn Black Date: Mon, 11 Mar 2024 21:50:16 -0700 Subject: [PATCH] Move `~/bin` to a safer place in my path I'm not overriding commands any more so the security questions of having `~/bin` first aren't worth it. --- .profile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.profile b/.profile index 6c147a9..44f2110 100644 --- a/.profile +++ b/.profile @@ -5,9 +5,8 @@ if [ -z "$SSH_CLIENT" ] && [ -z "$SSH_TTY" ]; then eval `keychain --eval id_ed25519` fi -# Put ~/bin first in my path so I can customize commands -# This isn't great on a security level and I should stop this. -export PATH=~/bin:$PATH +# Put ~/bin in my PATH but last +export PATH=$PATH:~/bin # Figure out my editor. I want helix if this box has it, but where it is # is inconsistent thanks to Archlinux packaging. It can be /usr/bin/helix,