Added tmux session for remote server

This commit is contained in:
2024-12-26 16:39:54 +02:00
parent 2c36da019d
commit 3137d24a62

View File

@@ -31,6 +31,16 @@ elif [ "$sess" = "eko" ]; then
tmux send-keys -t $sess:logs.3 "go run ./cmd/server --stdout" C-m
tmux select-window -t $sess:editor
elif [ "$sess" = "server" ]; then
tmux rename-window -t $sess:1 local
tmux new-window -t $sess -n remote -c $dir
tmux send-keys -t $sess:remote.1 "ssh root@server" C-m
tmux new-window -t $sess -n editor -c $dir
tmux send-keys -t $sess:editor.1 "vim" C-m
tmux select-window -t $sess:remote
elif [[ "$dir" == "$HOME/projects/"* ]]; then
tmux rename-window -t $sess:1 editor
tmux send-keys -t $sess:editor.1 "vim" C-m