ProxySwitcher/configs/wsl_sudo_env.json

36 lines
720 B
JSON
Raw Normal View History

{
"name": "WSL - Sudo - Env",
"cmd": "wsl sudo",
"set": [
{
"args": [
"tee",
"-a",
"/etc/environment",
"\"<<<\"",
"http_proxy"
],
"equator": "="
}, {
"args": [
"tee",
"-a",
"/etc/environment",
"\"<<<\"",
"https_proxy"
],
"equator": "="
}
],
"unset": [
{
"args": [
"sed",
"-i",
"'''/^https\\?_proxy=.*$/d'''",
"/etc/environment"
]
}
]
}