6 lines
140 B
Bash
Executable file
6 lines
140 B
Bash
Executable file
#!/bin/bash
|
|
|
|
[ -n "${TMUX}" ] && exit 1
|
|
|
|
tmux-agent
|
|
tmux attach-session -t $(tmux list-sessions | sort -n | head -n1 | cut -d: -f1) || tmux
|