├── .gitattributes ├── .gitignore ├── Community.PowerToys.Run.Plugin.Scoop ├── .editorconfig ├── .zipignore ├── Community.PowerToys.Run.Plugin.Scoop.csproj ├── Controls │ ├── HyperlinkButton.cs │ ├── HyperlinkButton.xaml │ ├── ProgressBar.xaml │ ├── TitleBar.cs │ └── TitleBar.xaml ├── Images │ ├── scoop.ico │ └── scoop.png ├── Main.cs ├── Properties │ ├── Resources.Designer.cs │ └── Resources.resx ├── Scoop.cs ├── StatusWindow.xaml ├── StatusWindow.xaml.cs ├── Themes │ ├── Fluent.Dark.xaml │ ├── Fluent.Light.xaml │ └── Fluent.xaml ├── Utility.cs ├── copyLib.ps1 ├── debug.ps1 ├── plugin.json └── release.ps1 ├── LICENSE ├── PowerToysRunScoop.sln └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quriz/PowerToysRunScoop/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quriz/PowerToysRunScoop/HEAD/.gitignore -------------------------------------------------------------------------------- /Community.PowerToys.Run.Plugin.Scoop/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quriz/PowerToysRunScoop/HEAD/Community.PowerToys.Run.Plugin.Scoop/.editorconfig -------------------------------------------------------------------------------- /Community.PowerToys.Run.Plugin.Scoop/.zipignore: -------------------------------------------------------------------------------- 1 | .git 2 | .zipignore -------------------------------------------------------------------------------- /Community.PowerToys.Run.Plugin.Scoop/Community.PowerToys.Run.Plugin.Scoop.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quriz/PowerToysRunScoop/HEAD/Community.PowerToys.Run.Plugin.Scoop/Community.PowerToys.Run.Plugin.Scoop.csproj -------------------------------------------------------------------------------- /Community.PowerToys.Run.Plugin.Scoop/Controls/HyperlinkButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quriz/PowerToysRunScoop/HEAD/Community.PowerToys.Run.Plugin.Scoop/Controls/HyperlinkButton.cs -------------------------------------------------------------------------------- /Community.PowerToys.Run.Plugin.Scoop/Controls/HyperlinkButton.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quriz/PowerToysRunScoop/HEAD/Community.PowerToys.Run.Plugin.Scoop/Controls/HyperlinkButton.xaml -------------------------------------------------------------------------------- /Community.PowerToys.Run.Plugin.Scoop/Controls/ProgressBar.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quriz/PowerToysRunScoop/HEAD/Community.PowerToys.Run.Plugin.Scoop/Controls/ProgressBar.xaml -------------------------------------------------------------------------------- /Community.PowerToys.Run.Plugin.Scoop/Controls/TitleBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quriz/PowerToysRunScoop/HEAD/Community.PowerToys.Run.Plugin.Scoop/Controls/TitleBar.cs -------------------------------------------------------------------------------- /Community.PowerToys.Run.Plugin.Scoop/Controls/TitleBar.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quriz/PowerToysRunScoop/HEAD/Community.PowerToys.Run.Plugin.Scoop/Controls/TitleBar.xaml -------------------------------------------------------------------------------- /Community.PowerToys.Run.Plugin.Scoop/Images/scoop.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quriz/PowerToysRunScoop/HEAD/Community.PowerToys.Run.Plugin.Scoop/Images/scoop.ico -------------------------------------------------------------------------------- /Community.PowerToys.Run.Plugin.Scoop/Images/scoop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quriz/PowerToysRunScoop/HEAD/Community.PowerToys.Run.Plugin.Scoop/Images/scoop.png -------------------------------------------------------------------------------- /Community.PowerToys.Run.Plugin.Scoop/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quriz/PowerToysRunScoop/HEAD/Community.PowerToys.Run.Plugin.Scoop/Main.cs -------------------------------------------------------------------------------- /Community.PowerToys.Run.Plugin.Scoop/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quriz/PowerToysRunScoop/HEAD/Community.PowerToys.Run.Plugin.Scoop/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Community.PowerToys.Run.Plugin.Scoop/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quriz/PowerToysRunScoop/HEAD/Community.PowerToys.Run.Plugin.Scoop/Properties/Resources.resx -------------------------------------------------------------------------------- /Community.PowerToys.Run.Plugin.Scoop/Scoop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quriz/PowerToysRunScoop/HEAD/Community.PowerToys.Run.Plugin.Scoop/Scoop.cs -------------------------------------------------------------------------------- /Community.PowerToys.Run.Plugin.Scoop/StatusWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quriz/PowerToysRunScoop/HEAD/Community.PowerToys.Run.Plugin.Scoop/StatusWindow.xaml -------------------------------------------------------------------------------- /Community.PowerToys.Run.Plugin.Scoop/StatusWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quriz/PowerToysRunScoop/HEAD/Community.PowerToys.Run.Plugin.Scoop/StatusWindow.xaml.cs -------------------------------------------------------------------------------- /Community.PowerToys.Run.Plugin.Scoop/Themes/Fluent.Dark.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quriz/PowerToysRunScoop/HEAD/Community.PowerToys.Run.Plugin.Scoop/Themes/Fluent.Dark.xaml -------------------------------------------------------------------------------- /Community.PowerToys.Run.Plugin.Scoop/Themes/Fluent.Light.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quriz/PowerToysRunScoop/HEAD/Community.PowerToys.Run.Plugin.Scoop/Themes/Fluent.Light.xaml -------------------------------------------------------------------------------- /Community.PowerToys.Run.Plugin.Scoop/Themes/Fluent.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quriz/PowerToysRunScoop/HEAD/Community.PowerToys.Run.Plugin.Scoop/Themes/Fluent.xaml -------------------------------------------------------------------------------- /Community.PowerToys.Run.Plugin.Scoop/Utility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quriz/PowerToysRunScoop/HEAD/Community.PowerToys.Run.Plugin.Scoop/Utility.cs -------------------------------------------------------------------------------- /Community.PowerToys.Run.Plugin.Scoop/copyLib.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quriz/PowerToysRunScoop/HEAD/Community.PowerToys.Run.Plugin.Scoop/copyLib.ps1 -------------------------------------------------------------------------------- /Community.PowerToys.Run.Plugin.Scoop/debug.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quriz/PowerToysRunScoop/HEAD/Community.PowerToys.Run.Plugin.Scoop/debug.ps1 -------------------------------------------------------------------------------- /Community.PowerToys.Run.Plugin.Scoop/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quriz/PowerToysRunScoop/HEAD/Community.PowerToys.Run.Plugin.Scoop/plugin.json -------------------------------------------------------------------------------- /Community.PowerToys.Run.Plugin.Scoop/release.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quriz/PowerToysRunScoop/HEAD/Community.PowerToys.Run.Plugin.Scoop/release.ps1 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quriz/PowerToysRunScoop/HEAD/LICENSE -------------------------------------------------------------------------------- /PowerToysRunScoop.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quriz/PowerToysRunScoop/HEAD/PowerToysRunScoop.sln -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quriz/PowerToysRunScoop/HEAD/README.md --------------------------------------------------------------------------------