├── .gitattributes ├── .github ├── FUNDING.yml └── workflows │ ├── excavator.yml │ ├── issues.yml │ ├── pull_request_comments.yml │ └── pull_requests.yml ├── .gitignore ├── .vscode ├── extensions.json └── settings.json ├── LICENSE ├── README.md ├── Scoop-Bucket.Tests.ps1 ├── appveyor.yml ├── bin ├── auto-pr.ps1 ├── checkurls.ps1 ├── checkver.ps1 ├── formatjson.ps1 ├── missing-checkver.ps1 └── test.ps1 ├── bucket ├── aomei-partition-assistant-standard.json ├── corsair-icue.json ├── custom-resolution-utility.json ├── ffmpeg-for-audacity.json ├── luyten.json ├── musescore-nightly-with-file-associations.json ├── neovim-dev.json ├── raylib.json ├── rfxgen.json ├── shellexview.json ├── visualvm.json ├── win10-initial-setup-script.json └── windows-sdk-signing-tools.json └── scripts ├── musescore-install-file-associations.reg └── musescore-uninstall-file-associations.reg /.gitattributes: -------------------------------------------------------------------------------- 1 | * text eol=crlf 2 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | patreon: therandomlabs 2 | -------------------------------------------------------------------------------- /.github/workflows/excavator.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRandomLabs/Scoop-Bucket/HEAD/.github/workflows/excavator.yml -------------------------------------------------------------------------------- /.github/workflows/issues.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRandomLabs/Scoop-Bucket/HEAD/.github/workflows/issues.yml -------------------------------------------------------------------------------- /.github/workflows/pull_request_comments.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRandomLabs/Scoop-Bucket/HEAD/.github/workflows/pull_request_comments.yml -------------------------------------------------------------------------------- /.github/workflows/pull_requests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRandomLabs/Scoop-Bucket/HEAD/.github/workflows/pull_requests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRandomLabs/Scoop-Bucket/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRandomLabs/Scoop-Bucket/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRandomLabs/Scoop-Bucket/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRandomLabs/Scoop-Bucket/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRandomLabs/Scoop-Bucket/HEAD/README.md -------------------------------------------------------------------------------- /Scoop-Bucket.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRandomLabs/Scoop-Bucket/HEAD/Scoop-Bucket.Tests.ps1 -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRandomLabs/Scoop-Bucket/HEAD/appveyor.yml -------------------------------------------------------------------------------- /bin/auto-pr.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRandomLabs/Scoop-Bucket/HEAD/bin/auto-pr.ps1 -------------------------------------------------------------------------------- /bin/checkurls.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRandomLabs/Scoop-Bucket/HEAD/bin/checkurls.ps1 -------------------------------------------------------------------------------- /bin/checkver.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRandomLabs/Scoop-Bucket/HEAD/bin/checkver.ps1 -------------------------------------------------------------------------------- /bin/formatjson.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRandomLabs/Scoop-Bucket/HEAD/bin/formatjson.ps1 -------------------------------------------------------------------------------- /bin/missing-checkver.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRandomLabs/Scoop-Bucket/HEAD/bin/missing-checkver.ps1 -------------------------------------------------------------------------------- /bin/test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRandomLabs/Scoop-Bucket/HEAD/bin/test.ps1 -------------------------------------------------------------------------------- /bucket/aomei-partition-assistant-standard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRandomLabs/Scoop-Bucket/HEAD/bucket/aomei-partition-assistant-standard.json -------------------------------------------------------------------------------- /bucket/corsair-icue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRandomLabs/Scoop-Bucket/HEAD/bucket/corsair-icue.json -------------------------------------------------------------------------------- /bucket/custom-resolution-utility.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRandomLabs/Scoop-Bucket/HEAD/bucket/custom-resolution-utility.json -------------------------------------------------------------------------------- /bucket/ffmpeg-for-audacity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRandomLabs/Scoop-Bucket/HEAD/bucket/ffmpeg-for-audacity.json -------------------------------------------------------------------------------- /bucket/luyten.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRandomLabs/Scoop-Bucket/HEAD/bucket/luyten.json -------------------------------------------------------------------------------- /bucket/musescore-nightly-with-file-associations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRandomLabs/Scoop-Bucket/HEAD/bucket/musescore-nightly-with-file-associations.json -------------------------------------------------------------------------------- /bucket/neovim-dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRandomLabs/Scoop-Bucket/HEAD/bucket/neovim-dev.json -------------------------------------------------------------------------------- /bucket/raylib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRandomLabs/Scoop-Bucket/HEAD/bucket/raylib.json -------------------------------------------------------------------------------- /bucket/rfxgen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRandomLabs/Scoop-Bucket/HEAD/bucket/rfxgen.json -------------------------------------------------------------------------------- /bucket/shellexview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRandomLabs/Scoop-Bucket/HEAD/bucket/shellexview.json -------------------------------------------------------------------------------- /bucket/visualvm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRandomLabs/Scoop-Bucket/HEAD/bucket/visualvm.json -------------------------------------------------------------------------------- /bucket/win10-initial-setup-script.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRandomLabs/Scoop-Bucket/HEAD/bucket/win10-initial-setup-script.json -------------------------------------------------------------------------------- /bucket/windows-sdk-signing-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRandomLabs/Scoop-Bucket/HEAD/bucket/windows-sdk-signing-tools.json -------------------------------------------------------------------------------- /scripts/musescore-install-file-associations.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRandomLabs/Scoop-Bucket/HEAD/scripts/musescore-install-file-associations.reg -------------------------------------------------------------------------------- /scripts/musescore-uninstall-file-associations.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRandomLabs/Scoop-Bucket/HEAD/scripts/musescore-uninstall-file-associations.reg --------------------------------------------------------------------------------