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."