Initial scoop bucket for psmux v0.3.9

This commit is contained in:
computersrmyfriends
2026-02-21 11:32:45 +05:30
commit 92698a049f
2 changed files with 66 additions and 0 deletions

25
README.md Normal file
View File

@@ -0,0 +1,25 @@
# scoop-psmux
Scoop bucket for [psmux](https://github.com/marlocarlo/psmux) — terminal multiplexer for Windows (tmux alternative).
## Usage
```powershell
# Add the bucket
scoop bucket add psmux https://github.com/marlocarlo/scoop-psmux
# Install psmux
scoop install psmux
```
## What's included
- **psmux.exe** — Main executable
- **pmux.exe** — Short alias
- **tmux.exe** — tmux-compatible alias
## Updating
```powershell
scoop update psmux
```

41
bucket/psmux.json Normal file
View File

@@ -0,0 +1,41 @@
{
"version": "0.3.9",
"description": "Terminal multiplexer for Windows - tmux alternative for PowerShell and Windows Terminal",
"homepage": "https://github.com/marlocarlo/psmux",
"license": "MIT",
"architecture": {
"64bit": {
"url": "https://github.com/marlocarlo/psmux/releases/download/v0.3.9/psmux-v0.3.9-windows-x64.zip",
"hash": "C7478CEAD0D0B99D61D947D48A40AC8326109867AF8FCA1D4ED330EF4EBCE7DF"
},
"32bit": {
"url": "https://github.com/marlocarlo/psmux/releases/download/v0.3.9/psmux-v0.3.9-windows-x86.zip",
"hash": "87A091B454974357DA40C0E50E22A806BC8A2C147B928719DE89CC14CE9195F2"
},
"arm64": {
"url": "https://github.com/marlocarlo/psmux/releases/download/v0.3.9/psmux-v0.3.9-windows-arm64.zip",
"hash": "CF42BA14C52539DCAA76470687BDE79542DC7B8680854A1CA5DEC8CCFB177F61"
}
},
"bin": [
"psmux.exe",
"pmux.exe",
"tmux.exe"
],
"checkver": {
"github": "https://github.com/marlocarlo/psmux"
},
"autoupdate": {
"architecture": {
"64bit": {
"url": "https://github.com/marlocarlo/psmux/releases/download/v$version/psmux-v$version-windows-x64.zip"
},
"32bit": {
"url": "https://github.com/marlocarlo/psmux/releases/download/v$version/psmux-v$version-windows-x86.zip"
},
"arm64": {
"url": "https://github.com/marlocarlo/psmux/releases/download/v$version/psmux-v$version-windows-arm64.zip"
}
}
}
}