From 4f1338a4b5ba58bf5da35f3c6ce1753d69c83ec6 Mon Sep 17 00:00:00 2001 From: nicholas Date: Wed, 21 May 2025 13:30:44 -0600 Subject: [PATCH] Added tmux to stow list, and added missing install scripts to run.sh --- dotfiles-setup.sh | 1 + run.sh | 8 ++++++++ 2 files changed, 9 insertions(+) diff --git a/dotfiles-setup.sh b/dotfiles-setup.sh index 6411ca4..4a610c0 100755 --- a/dotfiles-setup.sh +++ b/dotfiles-setup.sh @@ -29,6 +29,7 @@ if [ $? -eq 0 ]; then stow zshrc stow nvim stow starship + stow tmux else echo "Failed to clone the repository." exit 1 diff --git a/run.sh b/run.sh index dafc0b2..9360348 100755 --- a/run.sh +++ b/run.sh @@ -124,6 +124,14 @@ else # Some programs just run better as flatpaks. Like discord/spotify echo "Installing flatpaks (like discord and spotify)" . install-flatpaks.sh + + # Install dotfiles + echo "Installing dotfiles/configurations..." + . dotfiles-setup.sh + + # Install TPM + echo "Installing TPM and TMUX extensions..." + . install-tpm.sh fi echo "Setup complete! You may want to reboot your system."