commit 92698a049f9724397d63fc96901390a1d99483e8 Author: computersrmyfriends Date: Sat Feb 21 11:32:45 2026 +0530 Initial scoop bucket for psmux v0.3.9 diff --git a/README.md b/README.md new file mode 100644 index 0000000..fb640f8 --- /dev/null +++ b/README.md @@ -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 +``` diff --git a/bucket/psmux.json b/bucket/psmux.json new file mode 100644 index 0000000..6f4d6a8 --- /dev/null +++ b/bucket/psmux.json @@ -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" + } + } + } +}