tmux_kill_session
Terminate a tmux session and all associated windows and panes to clean up unused terminal sessions and free system resources.
Instructions
Kill/terminate a tmux session and all its windows and panes.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| session_name | Yes | Name of the tmux session to kill |
Input Schema (JSON Schema)
{
"properties": {
"session_name": {
"description": "Name of the tmux session to kill",
"type": "string"
}
},
"required": [
"session_name"
],
"type": "object"
}