This repo serves as the package repository for Power Package Manager (PPKG), a package manager for PowerToys Run plugins.
https://repo.powerpkg.dev/repo.json
Throughout the repo you’ll see references to both packages and plugins. Here’s the difference:
packages/PACKAGEID
where PACKAGEID
is a sensible alphanumeric name based off your plugin name. The rest of the steps take place in this directory.info.json
. Below is a schema for the file:{
// This is the same ID that you use in the `plugin.json` for your PowerToys Run Plugin
"ID": "BX1Z634F30489859A3671B4FQ7Y07193",
// Plugin name to be displayed in the PPKG UI
"Name": "Spotify",
// A short summary of your package
"Description": "Allows you to search Spotify and control its player.",
// Your name or username
"Author": "waaverecords",
// The source code URL
"SourceUrl": "https://github.com/waaverecords/PowerToys-Run-Spotify",
// OPTIONAL: License information. Don't include if you don't have a license
"License": {
// License type (MIT, GPL, etc). Can be any string value as long as it's the license name.
"Type": "MIT",
// The url to the license file
"Url": "https://github.com/waaverecords/PowerToys-Run-Spotify/blob/main/LICENSE"
},
// Define versions of your package. Versions MUST be in descending order with the latest version being at the top
"Versions": {
// The keys are supported architectures and values are the download for that architecture.
// You must include at least one.
// Supported architectures: x64, arm64
// Supported file types: zip
"0.82.0": {
"x64": "https://github.com/waaverecords/PowerToys-Run-Spotify/releases/download/v0.83.0/PowerToys-Run-Spotify.zip"
}
},
// OPTIONAL: Scripts to be run during install. Allowed values: Install, PostInstall
"Scripts": {
// OPTIONAL: Run before install
"Install": "https://example.com/install.bat",
// OPTIONA: Run after install
"PostInstall": "https://example.com/post-install.bat"
}
}
README.md
file. This will be the long description of the package in PPKG desktop app. If you are using the same README from your plugins GitHub repo, a few changes may be required.
assets
inside your package directory../assets/preview.png
. This is a MUST as image paths are parsed later on