| 12345678910111213141516171819202122232425262728293031 |
- {
- "version": "1.0.0.4",
- "description": "Service that connects or disconnects a wireguard tunnel based on the current conditions.",
- "license": "None",
- "homepage": "https://www.kunago.com",
- "hash": "sha512:3678A91E0A75B7205F9C4288F5598F0D087B17FDD7142AF00CE95CEBD54E473C6E56AD69C5A3CF5CED9C0085BF976345B6FBB9FF63F069AF96668CEBE8A12381",
- "url": "https://git.apason.cz/kunago/scoop-bucket/raw/branch/master/programs/kunago_wireguard/kunago_wireguard-1.0.0.4.7z",
- "bin": [
- "kunago_wireguard.exe"
- ],
- "post_install": [
- "$task = \"Kunago wireguard autostart\"",
- "Register-ScheduledTask -Xml (Get-Content \"$dir\\data\\task.xml\" | Out-String) -TaskName \"$task\"",
- "Start-Sleep -Seconds 2.0",
- "Start-ScheduledTask -TaskName \"$task\""
- ],
- "pre_uninstall": [
- "$task = \"Kunago wireguard autostart\"",
- "Stop-ScheduledTask -TaskName \"$task\"",
- "Start-Sleep -Seconds 2.0",
- "Stop-Process -Name \"kunago_wireguard\" -Force",
- "Start-Sleep -Seconds 2.0",
- "Unregister-ScheduledTask -TaskName \"$task\""
- ],
- "shortcuts": [
- [
- "kunago_wireguard.exe",
- "Wireguard autostart"
- ]
- ]
- }
|