chore: archive AgentDock v1 implementation
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
# Add user-installed commands to interactive non-login shells.
|
||||
if [ -d "$HOME/bin" ]; then
|
||||
case ":$PATH:" in
|
||||
*":$HOME/bin:"*) ;;
|
||||
*) PATH="$HOME/bin:$PATH" ;;
|
||||
esac
|
||||
fi
|
||||
|
||||
export PATH
|
||||
@@ -0,0 +1,11 @@
|
||||
# Add user-installed commands to login shells.
|
||||
if [ -d "$HOME/bin" ]; then
|
||||
PATH="$HOME/bin:$PATH"
|
||||
fi
|
||||
|
||||
export PATH
|
||||
|
||||
if [ -f "$HOME/.bashrc" ]; then
|
||||
. "$HOME/.bashrc"
|
||||
fi
|
||||
|
||||
Reference in New Issue
Block a user