diff --git a/fedora/install-dev.sh b/fedora/install-dev.sh index 5a85464..c33ac0d 100644 --- a/fedora/install-dev.sh +++ b/fedora/install-dev.sh @@ -1,5 +1,5 @@ sudo cp ../sesh /usr/bin -cp ../.tmux.conf ~ +cp ../tmux.conf ~/.tmux.conf sudo dnf install zig -y sudo dnf install neovim -y diff --git a/saveTmuxConf.sh b/saveTmuxConf.sh deleted file mode 100755 index d45c7f3..0000000 --- a/saveTmuxConf.sh +++ /dev/null @@ -1,4 +0,0 @@ -cp ~/.tmux.conf ./.tmux.conf -git add .tmux.conf -git commit -m "Updates Tmux Configuration" -git push diff --git a/tmuxConfLoad.sh b/tmuxConfLoad.sh new file mode 100755 index 0000000..6b5903e --- /dev/null +++ b/tmuxConfLoad.sh @@ -0,0 +1 @@ +cp ./tmux.conf ~/.tmux.conf diff --git a/pushTmuxSettings.sh b/tmuxConfSave.sh old mode 100644 new mode 100755 similarity index 52% rename from pushTmuxSettings.sh rename to tmuxConfSave.sh index d45c7f3..f23e563 --- a/pushTmuxSettings.sh +++ b/tmuxConfSave.sh @@ -1,4 +1,4 @@ -cp ~/.tmux.conf ./.tmux.conf -git add .tmux.conf +cp ~/.tmux.conf ./tmux.conf +git add tmux.conf git commit -m "Updates Tmux Configuration" git push diff --git a/ubuntu/install-dev.sh b/ubuntu/install-dev.sh index efcedc6..892bfbb 100644 --- a/ubuntu/install-dev.sh +++ b/ubuntu/install-dev.sh @@ -2,7 +2,7 @@ sudo apt install zig -y snap install nvim --classic sudo cp ../sesh /usr/bin -cp .tmux.conf ~ +cp ../tmux.conf ~/.tmux.conf ###### Node curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash