aboutsummaryrefslogtreecommitdiffstats
path: root/.zsh.before/path.zsh
blob: 52238b33613efe5f2809af8ff514af71371c61b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
# Prepend $HOME/bin and append /usr/sbin to PATH (for Debilian)
PATH="$HOME/bin:$PATH:/usr/sbin"
if [[ -d "$HOME/.pyenv/shims" ]]; then
  PATH="$HOME/.pyenv/shims:$PATH"
fi

## RASPBERRY PI
if [[ "$HOST" == *pitheunlord* ]]; then
  PATH=$PATH:"/opt/vc/bin:/opt/vc/sbin"
fi