From 26ec6aff99a6a2435f512d47e995a7639c134608 Mon Sep 17 00:00:00 2001 From: thek4n Date: Mon, 12 Jan 2026 08:28:44 +0300 Subject: [PATCH] fix tmux/dotfiles --- home/user/.tmux/dotfiles | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/home/user/.tmux/dotfiles b/home/user/.tmux/dotfiles index ce686f1..0f4fa7c 100755 --- a/home/user/.tmux/dotfiles +++ b/home/user/.tmux/dotfiles @@ -9,7 +9,7 @@ readonly WORKING_PROJECT="${HOME}/dotfiles" if ! tmux has-session -t="${SESSION}"; then tmux new-session -s "${SESSION}" -d -n "${MAINW}" -c "${WORKING_PROJECT}" - tmux splitw -t "${SESSION}:${MAINW}" -d -b -h -l "${_tmux_other_pane_size}" -c '#{pane_current_path}' + tmux splitw -t "${SESSION}:${MAINW}" -d -b -h -l "${_tmux_other_pane_size}" -c "${WORKING_PROJECT}" sleep 0.3 tmux send-keys -t "${SESSION}:${MAINW}.1" "git pull --rebase && git push" Enter tmux send-keys -t "${SESSION}:${MAINW}.2" '$EDITOR' Enter