Initial native Android tmux client

This commit is contained in:
Codex
2026-07-03 13:49:13 +00:00
commit 6107faf726
20 changed files with 3027 additions and 0 deletions
@@ -0,0 +1,20 @@
package com.neatstudio.tmuxandroid;
final class SessionSummary {
final String name;
final String status;
final String currentCommand;
final String currentPath;
final int windows;
final int paneCount;
SessionSummary(String name, String status, String currentCommand, String currentPath, int windows, int paneCount) {
this.name = name;
this.status = status;
this.currentCommand = currentCommand;
this.currentPath = currentPath;
this.windows = windows;
this.paneCount = paneCount;
}
}