Không có mô tả

Miroslav Abrahám 09f53b3f34 Add nssm to docs 10 tháng trước cách đây
bin e707fb2e50 Change the bucket structure to correspond with the structure recommended by scoop developers 2 năm trước cách đây
bucket ddf66fbdce Update Betterbird to 128.9.2esr-bb25 11 tháng trước cách đây
deprecated 319ebe720a Make DeltaChat deprecated 1 năm trước cách đây
docs 09f53b3f34 Add nssm to docs 10 tháng trước cách đây
programs 6b8e5bd694 Update kunago_file_assoc to version 1.0.0.3 1 năm trước cách đây
scripts e707fb2e50 Change the bucket structure to correspond with the structure recommended by scoop developers 2 năm trước cách đây
README.md a820554adb Update docs 11 tháng trước cách đây
scoop-bucket.code-workspace 9333286b7d Rename the vscode workspace file 1 năm trước cách đây

README.md

This is my "scoop" bucket list, for personal use. In order to install as a new bucket, run following:

scoop bucket add kunago https://git.kunago.com/kunago/scoop-bucket

scoop installation

Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser
Invoke-RestMethod -Uri https://get.scoop.sh | Invoke-Expression

If you need to set custom directories, run these:

# for user, run as user
$env:SCOOP='<user path>'
[Environment]::SetEnvironmentVariable('SCOOP', $env:SCOOP, 'User')

# globally, run as admin
$env:SCOOP_GLOBAL='<global path>'
[Environment]::SetEnvironmentVariable('SCOOP_GLOBAL', $env:SCOOP_GLOBAL, 'Machine')

In case you already set custom directories in past and need to remove them, run these:

# for user, run as user
[Environment]::SetEnvironmentVariable("SCOOP",$null,"User")

# globally, run as admin
[Environment]::SetEnvironmentVariable("SCOOP_GLOBAL",$null,"Machine")