fix tpm path

This commit is contained in:
2025-08-16 20:08:05 -04:00
parent 3e038cb8f2
commit a38796b975
+6 -5
View File
@@ -16,11 +16,11 @@ case $(uname -s) in
echo "Installing/Updating homebrew bundle" echo "Installing/Updating homebrew bundle"
brew bundle --global brew bundle --global
fi fi
;;
# espanso # espanso
espanso service register espanso service register
espanso service start espanso service start
;;
Linux) Linux)
@@ -28,15 +28,15 @@ case $(uname -s) in
# I'm not sure the best way to do this yet, but as I primarily use Arch and # I'm not sure the best way to do this yet, but as I primarily use Arch and
# Debian based distros, I'm going to separate them by package manager.. # Debian based distros, I'm going to separate them by package manager..
if [ ! command -v pacman >/dev/null 2>&1 ]; then # Arch-based if command -v pacman >/dev/null 2>&1; then # Arch-based
# Add BlackArch repositories # Add BlackArch repositories
if [ ! -f /etc/blackarch-mirrorlist ]; then if [ ! -f /etc/pacman.d/blackarch-mirrorlist ]; then
echo "Installing BlackArch repositories" echo "Installing BlackArch repositories"
curl -O https://blackarch.org/strap.sh && sudo sh ./strap.sh curl -O https://blackarch.org/strap.sh && sudo sh ./strap.sh
fi fi
elif [ $(which apt-get) || $(which apt) ]; then # Debian-based elif [ ! command -v apt >/dev/null 2>&1 ]; then # Debian-based
echo "nothing to do yet" echo "nothing to do yet"
@@ -107,5 +107,6 @@ fi
if ! [ -d "$HOME/.config/tmux/plugins/tpm/" ]; then if ! [ -d "$HOME/.config/tmux/plugins/tpm/" ]; then
echo "Installing Tmux Plugin Manager (TPM)" echo "Installing Tmux Plugin Manager (TPM)"
git clone https://github.com/tmux-plugins/tpm $HOME/config/tmux/plugins/tpm mkdir -p "$HOME/.config/tmux/plugins/tpm"
git clone https://github.com/tmux-plugins/tpm $HOME/.config/tmux/plugins/tpm
fi fi