Files
herolib/lib/osal/tmux
mariobassem 9f6e49963e wip: test: improve tmux tests
- Fix bugs found during testing.

Co-authored-by: mahmmoud.hassanein <mahmmoud.hassanein@gmail.com>
2025-01-27 18:27:50 +02:00
..
2024-12-25 08:40:56 +01:00
2025-01-27 18:27:50 +02:00
2024-12-25 08:40:56 +01:00
2024-12-26 10:14:37 +00:00
2025-01-27 18:27:50 +02:00
2025-01-27 18:27:50 +02:00

TMUX

TMUX is a very capable process manager.

Concepts

  • tmux = is the factory, it represents the tmux process manager, linked to a node
  • session = is a set of windows, it has a name and groups windows
  • window = is typically one process running (you can have panes but in our implementation we skip this)

structure

tmux library provides functions for managing tmux sessions

  • session is the top one
  • then windows (is where you see the app running)
  • then panes in windows (we don't support yet)

to attach to a tmux session

TODO: