https://github.com/psmux/psmux
Tmux on Windows Powershell - tmux for PowerShell, Windows Terminal, cmd.exe. Includes psmux, pmux, and tmux commands. This is native Powershell Tmux designed for Windows in Rust ๐ฆ
https://github.com/psmux/psmux
cli powershell psmux rust terminal terminal-multiplexer tmux tmux-alternative tmux-on-windows tmux-powershell tmux-win tmux-windows win-tmux windows windows-terminal windows-tmux
Last synced: about 18 hours ago
JSON representation
Tmux on Windows Powershell - tmux for PowerShell, Windows Terminal, cmd.exe. Includes psmux, pmux, and tmux commands. This is native Powershell Tmux designed for Windows in Rust ๐ฆ
- Host: GitHub
- URL: https://github.com/psmux/psmux
- Owner: psmux
- License: mit
- Created: 2025-11-30T18:09:19.000Z (5 months ago)
- Default Branch: master
- Last Pushed: 2026-04-25T14:09:11.000Z (4 days ago)
- Last Synced: 2026-04-25T14:26:45.563Z (4 days ago)
- Topics: cli, powershell, psmux, rust, terminal, terminal-multiplexer, tmux, tmux-alternative, tmux-on-windows, tmux-powershell, tmux-win, tmux-windows, win-tmux, windows, windows-terminal, windows-tmux
- Language: PowerShell
- Homepage: https://psmux.pages.dev/
- Size: 6.32 MB
- Stars: 1,533
- Watchers: 11
- Forks: 100
- Open Issues: 39
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
```
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ โโโโโโโ โโโโโโโโโโโโ โโโโโโโ โโโโโโ โโโ โ
โ โโโโโโโโโโโโโโโโโโโโโ โโโโโโโโ โโโโโโโโโโโ โ
โ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ โโโ โโโโโโ โ
โ โโโโโโโ โโโโโโโโโโโโโโโโโโโโโโ โโโ โโโโโโ โ
โ โโโ โโโโโโโโโโโ โโโ โโโโโโโโโโโโโโโโ โโโ โ
โ โโโ โโโโโโโโโโโ โโโ โโโโโโโ โโโ โโโ โ
โ Born in PowerShell. Made in Rust. ๐ฆ โ
โ Terminal Multiplexer for Windows โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
```
The native Windows tmux. Born in PowerShell, made in Rust.
Full mouse support ยท tmux themes ยท tmux config ยท 83 commands ยท blazing fast
Install ยท
Usage ยท
Claude Code ยท
Features ยท
Compatibility ยท
Performance ยท
Plugins ยท
Keys ยท
Scripting ยท
Config ยท
Mouse/SSH ยท
FAQ ยท
Related Projects
---
# psmux
**The real tmux for Windows.** Not a port, not a wrapper, not a workaround.
psmux is a **native Windows terminal multiplexer** built from the ground up in Rust. It uses Windows ConPTY directly, speaks the tmux command language, reads your `.tmux.conf`, and supports tmux themes. All without WSL, Cygwin, or MSYS2.
> ๐ก **Tip:** psmux ships with `tmux` and `pmux` aliases. Just type `tmux` and it works!
๐ On Windows ๐

## Installation
### Using WinGet
```powershell
winget install psmux
```
### Using Cargo
```powershell
cargo install psmux
```
This installs `psmux`, `pmux`, and `tmux` binaries to your Cargo bin directory.
### Using Scoop
```powershell
scoop bucket add psmux https://github.com/psmux/scoop-psmux
scoop install psmux
```
### Using Chocolatey
```powershell
choco install psmux
```
### From GitHub Releases
Download the latest `.zip` from [GitHub Releases](https://github.com/psmux/psmux/releases) and add to your PATH.
### From Source
```powershell
git clone https://github.com/psmux/psmux.git
cd psmux
cargo build --release
```
Built binaries:
```text
target\release\psmux.exe
target\release\pmux.exe
target\release\tmux.exe
```
### Docker (build environment)
A ready-made Windows container with Rust + MSVC + SSH for building psmux:
```powershell
cd docker
docker build -t psmux-dev .
docker run -d --name psmux-dev -p 127.0.0.1:2222:22 -e ADMIN_PASSWORD=YourPass123! psmux-dev
ssh ContainerAdministrator@localhost -p 2222
```
See [docker/README.md](docker/README.md) for full details.
### Requirements
- Windows 10 or Windows 11
- **PowerShell 7+** (recommended) or cmd.exe
- Download PowerShell: `winget install --id Microsoft.PowerShell`
- Or visit: https://aka.ms/powershell
## Why psmux?
If you've used tmux on Linux/macOS and wished you had something like it on Windows, **this is it**. Split panes, multiple windows, session persistence, full mouse support, tmux themes, 83 commands, 140+ format variables, 53 vim copy-mode keys. Your existing `.tmux.conf` works. Full details: **[docs/features.md](docs/features.md)** ยท **[docs/compatibility.md](docs/compatibility.md)**
## Usage
Use `psmux`, `pmux`, or `tmux` โ they're identical:
```powershell
psmux # Start a new session
psmux new-session -s work # Named session
psmux ls # List sessions
psmux attach -t work # Attach to a session
psmux --help # Show help
```
## Claude Code Agent Teams
psmux has first-class support for Claude Code agent teams. When Claude Code runs inside a psmux session, teammate agents automatically spawn in separate tmux panes instead of running in-process.
```powershell
psmux new-session -s work # Start a psmux session
claude # Run Claude Code โ agent teams just work
```
No extra configuration needed. Full guide: **[docs/claude-code.md](docs/claude-code.md)**
## Documentation
| Topic | Description |
|-------|-------------|
| **[Features](docs/features.md)** | Full feature list โ mouse, copy mode, layouts, format engine |
| **[Compatibility](docs/compatibility.md)** | tmux command/config compatibility matrix |
| **[Performance](docs/performance.md)** | Benchmarks and optimization details |
| **[Key Bindings](docs/keybindings.md)** | Default keys and customization |
| **[Scripting](docs/scripting.md)** | 83 commands, hooks, targets, pipe-pane |
| **[Configuration](docs/configuration.md)** | Config files, options, environment variables |
| **[Plugins & Themes](docs/plugins.md)** | Plugin ecosystem โ Catppuccin, Dracula, Nord, and more |
| **[Mouse Over SSH](docs/mouse-ssh.md)** | SSH mouse support and Windows version requirements |
| **[Claude Code](docs/claude-code.md)** | Agent teams integration guide |
| **[FAQ](docs/faq.md)** | Common questions and answers |
## Related Projects

pstop
htop for Windows โ real-time system monitor with per-core CPU bars, tree view, 7 color schemes
cargo install pstop

psnet
Real-time TUI network monitor โ live speed graphs, connections, traffic log, packet sniffer
cargo install psnet

Tmux Plugin Panel
TUI plugin & theme manager for tmux and psmux โ browse, install, update from your terminal
cargo install tmuxpanel

OMP Manager
Oh My Posh setup wizard โ browse 100+ themes, install fonts, configure shells automatically
cargo install omp-manager
## License
MIT
## Contributing
Contributions welcome โ bug reports, PRs, docs, and test scripts via [GitHub Issues](https://github.com/psmux/psmux/issues).
If psmux helps your Windows workflow, consider giving it a โญ on GitHub!
## Star History
[](https://www.star-history.com/?repos=psmux%2Fpsmux&type=date&legend=top-left)
---
Made with โค๏ธ for PowerShell using Rust ๐ฆ