From c9f599a3344286f886cc3c314267622e5c7071df Mon Sep 17 00:00:00 2001 From: Carlos Aldana Date: Sat, 18 May 2024 09:16:38 -0700 Subject: [PATCH] updates tmux conf savefile to not be hidden in repo --- fedora/install-dev.sh | 2 +- saveTmuxConf.sh | 4 ---- tmuxConfLoad.sh | 1 + pushTmuxSettings.sh => tmuxConfSave.sh | 4 ++-- ubuntu/install-dev.sh | 2 +- 5 files changed, 5 insertions(+), 8 deletions(-) delete mode 100755 saveTmuxConf.sh create mode 100755 tmuxConfLoad.sh rename pushTmuxSettings.sh => tmuxConfSave.sh (52%) mode change 100644 => 100755 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