From a9925a63cca2b6e0b92ba3bc3ebdac77c1d9a37c Mon Sep 17 00:00:00 2001 From: Menno van Leeuwen Date: Sun, 20 Jul 2025 01:03:06 +0200 Subject: [PATCH] feat: update .bashrc to include spicetify and pyenv in PATH --- .bashrc | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.bashrc b/.bashrc index 1aa1bdd..5e146b0 100644 --- a/.bashrc +++ b/.bashrc @@ -366,11 +366,20 @@ export DOTFILES_PATH=$HOME/.dotfiles export PATH=$PATH:$HOME/.local/bin export PATH=$PATH:$HOME/.cargo/bin export PATH=$PATH:$DOTFILES_PATH/bin +export PATH="/usr/bin:$PATH" +# Include spicetify if it exists if [ -d "$HOME/.spicetify" ]; then export PATH=$PATH:$HOME/.spicetify fi +# Include pyenv if it exists +if [ -d "$HOME/.pyenv" ]; then + export PYENV_ROOT="$HOME/.pyenv" + [[ -d $PYENV_ROOT/bin ]] && export PATH="$PYENV_ROOT/bin:$PATH" + eval "$(pyenv init - bash)" +fi + # Include pnpm if it exists if [ -d "$HOME/.local/share/pnpm" ]; then export PATH=$PATH:$HOME/.local/share/pnpm