Added scripts to path, added tmux-sessionizer it's so great, and also an

auto setup for projects (and specific ones aswell like eko)
This commit is contained in:
2024-11-28 11:27:55 +02:00
parent 2eece72a63
commit ef48ce7a9e
3 changed files with 54 additions and 0 deletions

26
scripts/tmux-session-setup Executable file
View File

@@ -0,0 +1,26 @@
#!/usr/bin/env bash
sess=$1
dir=$2
if [ "$sess" = "eko" ]; then
tmux rename-window -t $sess:1 editor
tmux send-keys -t $sess:editor.1 "vim" C-m
tmux new-window -t $sess -n app -c $dir
tmux split-window -t $sess:app.1 -v -c $dir
tmux send-keys -t $sess:app.2 "watchexec --exts=go './reload.sh'" C-m
tmux resize-pane -Z -t $sess:app.1
tmux new-window -t $sess -n logs -c $dir
tmux split-window -t $sess:logs.1 -h -c $dir
tmux split-window -t $sess:logs.2 -v -c $dir
tmux send-keys -t $sess:logs.1 "tail -f messages.log" C-m
tmux send-keys -t $sess:logs.2 "tail -f client.log" C-m
tmux send-keys -t $sess:logs.3 "go run ./cmd/server --stdout" C-m
tmux select-window -t $sess:editor
elif [[ "$dir" == "$HOME/projects/"* ]]; then
tmux rename-window -t $sess:1 editor
tmux send-keys -t $sess:editor.1 "vim" C-m
fi