Install and manage any PowerToys Run plugin released on GitHub with single command line interface.
Download binary from releases page.
Install and manage any PowerToys Run plugin released on GitHub with a simple command line interface. A lightweight GUI front-end is included that shells out to the CLI.
Download the prebuilt ZIP from the Releases page and extract. The release package should include:
ptr.exe(CLI)ptr-gui.exe(GUI)
Run ptr-gui.exe to open the GUI, or run ptr.exe from PowerShell / command prompt.
cargo binstall --git https://github.com/8LWXpg/ptr ptrYou need Rust toolchain installed (rustup). Then:
Set-Location 'C:\dev\ptr\ptr-repo'
cargo install --git https://github.com/8LWXpg/ptr.gitThe GUI is a thin front-end built with eframe/egui. It shells out to the ptr CLI for actions and reads the configuration at %LOCALAPPDATA%\\Microsoft\\PowerToys\\PowerToys Run\\Plugins\\version.toml to list plugins.
How to use the GUI (Windows):
- Download the release ZIP and extract.
- Double-click
ptr-gui.exeor run from PowerShell:
.\\ptr-gui.exeIf ptr (the CLI) is not on PATH the GUI will try to call ptr in the same folder. Place ptr.exe next to ptr-gui.exe if necessary.
To build the GUI locally (requires Rust):
Set-Location 'C:\dev\ptr\ptr-repo'
cargo build --release --bin ptr # build CLI
cargo build --release --bin gui # build GUI (produces ptr-gui.exe)For easy user installs on Windows:
- Build both
ptr.exeandptr-gui.exeon CI per target (e.g., windows-x86_64). Create a zip that contains both files and attach it to a GitHub Release. - Optionally publish a Chocolatey or Scoop package for single-command install on Windows.
- You can also provide a signed installer (MSI) if you want an installer-style UX.
For simple Rust-first distribution, publish the CLI to cargo-binstall and include the GUI if you prefer. Note that cargo-binstall focuses on CLI binaries and not Windows installers.
- The GUI uses
eframe/egui. - It reads the existing
version.tomlto list plugins and shells out toptr add/update/removefor operations. This keeps business logic in the CLI (src/config.rsandsrc/util.rs) and makes the GUI a thin control surface.
If you prefer, we can refactor the project to expose the plugin management functionality as a library crate (e.g., ptr-lib) and then call it directly from the GUI; that avoids the need for an external ptr executable and enables tighter integration.
Install a plugin with add:
Manage PowerToys Run plugins from GitHub. This repository provides a single ptr executable that works as both CLI and GUI:
- CLI:
ptr <command>(existing commands likeadd,update,remove, etc.) - GUI:
ptr guilaunches a graphical front-end built with eframe/egui (runs in the same executable).
Download the Windows release ZIP from the Releases page, extract, and run:
# Runs the GUI
.\\ptr.exe gui
# Or use CLI
.\\ptr.exe add MyPlugin 8LWXpg/PowerToysRun-MyPluginIf you prefer to build locally (developers):
Set-Location 'C:\dev\ptr\ptr-repo'
cargo build --release --bin ptr
# PowerToys Run — Third‑Party Plugins Installer
PowerToys Run Third‑Party Plugins Installer ("PTR Installer") makes it simple to discover and install third‑party PowerToys Run plugins without manually cloning repositories or fiddling with files.
This project provides a single executable that works as both a CLI and a GUI. Use the CLI for automation and scripting, or run the GUI for a simple install experience that respects your Windows theme and accent.
Built by tacticdev.com — help@tacticdev.com
---
Key features
- Install, update and remove third‑party PowerToys Run plugins from GitHub releases or repository references.
- Single executable that exposes both CLI and GUI entrypoints (`ptr` with a `gui` subcommand).
- GUI adapts to Windows dark mode and accent color for native look-and-feel.
- Supports creating properly sized icons for the GUI and installer.
- Packaging helpers and a Windows release workflow included for CI-based builds and signing.
Quick links
- Releases: See GitHub Releases for prebuilt Windows zips
- Issues & Support: Open an issue on this repository or email help@tacticdev.com
---
Getting started — end users
1. Download the latest Windows release ZIP from the Releases page and extract it.
2. Run the included executable and open the GUI:
```powershell
# runs the GUI from the single executable
.\ptr.exe gui- In the GUI, choose a third‑party provider from the dropdown or paste a GitHub repo (owner/name). Click Install.
That's it — PTR Installer handles downloading, installing, and registering the plugin with PowerToys Run.
CLI examples (power users)
Install a plugin by shorthand (owner/repo):
.\ptr.exe add MyPluginOwner/PowerToysRun-MyPluginInstall a plugin and accept defaults interactively:
.\ptr.exe add
# follow promptsList installed plugins:
.\ptr.exe listUpdate or remove:
.\ptr.exe update MyPlugin
.\ptr.exe remove MyPluginDeveloper: build from source
Requirements
- Rust toolchain (rustup)
- Windows (development and runtime tested on recent Windows 10 / 11)
Build steps:
Set-Location 'C:\dev\ptr\ptr-repo'
cargo build --release --bin ptr
# Launch GUI from the built binary
.\target\release\ptr.exe guiIf you prefer separate binaries for distribution, CI packaging currently builds a single ptr.exe that contains both CLI and GUI modes.
Packaging and CI
- A GitHub Actions workflow is included to build Windows release artifacts and create a ZIP for distribution. See
.github/workflows/windows-release.yml. - The workflow supports optional code signing using a PFX certificate supplied by repository secrets or via Azure Key Vault.
Icons and assets
- The repository includes a runtime mechanism to prefer an ICO or PNG icon in
assets/and can also generate sized PNGs at runtime. - Generated icons have been added to
assets/for convenience; the largeassets/source.pngis ignored in the repository (.gitignore) to keep the repo small.
Contributing
- Pull requests are welcome. For larger changes, open an issue first to discuss the design.
- Tests: adding unit tests around the core plugin management in
src/config.rsand library exports insrc/lib.rsis encouraged.
Support & contact
- Built by tacticdev.com — for help email help@tacticdev.com
- If you find a bug, please open an issue and include the following:
- Windows version
ptr --versionoutput- Steps to reproduce
License
This project is provided under the MIT license (see LICENSE file if present).
If you want a tailored installer (MSI/NSIS) or automatic publishing to Chocolatey/Scoop, I can add those CI steps and sign the builds — tell me which distribution channel you prefer.
We provide a curated plugin index in PLUGINS.md. The GUI includes a Catalog page that renders this list and offers oneclick Download and Install actions for each plugin. See PLUGINS.md in this repository for details and links.
