tmux
Installation
SKILL.md
Identity
| Property | Value |
|---|---|
| Binary | tmux |
| Config | ~/.tmux.conf or /etc/tmux.conf |
| Logs | No persistent logs — output to terminal |
| Type | CLI tool |
| Install | apt install tmux / dnf install tmux |
Key Operations
| Task | Command |
|---|---|
| New named session | tmux new-session -s mysession |
| Attach to named session | tmux attach-session -t mysession |
| Attach or create if absent | tmux new-session -A -s mysession |
| List all sessions | tmux list-sessions |
| Detach from session | prefix + d |
Related skills