chore: Add click-to-run scripts

This commit is contained in:
oSumAtrIX
2024-10-19 06:35:25 +02:00
parent 504c6c1ea5
commit e87ee9c5b8
19 changed files with 284 additions and 2 deletions

View File

@@ -0,0 +1,14 @@
@echo off
if "%~1"=="" (
set INVALID_ARGS=true
)
if defined INVALID_ARGS (
echo Installs a package using winget.
echo:
echo Usage: install ^<id^>
echo Example: install jqlang.jq
exit /b 1
)
run winget install -e --id=%1