mirror of
https://github.com/Baipyrus/ProxySwitcher.git
synced 2024-12-26 04:31:45 +00:00
add configs for linux settings under WSL
This commit is contained in:
parent
921c015618
commit
9370ff1bc1
36
configs/wsl_user_git.json
Normal file
36
configs/wsl_user_git.json
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
{
|
||||||
|
"name": "WSL - User - Git",
|
||||||
|
"cmd": "wsl git",
|
||||||
|
"set": [
|
||||||
|
{
|
||||||
|
"args": [
|
||||||
|
"config",
|
||||||
|
"--global",
|
||||||
|
"http.proxy"
|
||||||
|
]
|
||||||
|
}, {
|
||||||
|
"args": [
|
||||||
|
"config",
|
||||||
|
"--global",
|
||||||
|
"https.proxy"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"unset": [
|
||||||
|
{
|
||||||
|
"args": [
|
||||||
|
"config",
|
||||||
|
"--global",
|
||||||
|
"--unset",
|
||||||
|
"http.proxy"
|
||||||
|
]
|
||||||
|
}, {
|
||||||
|
"args": [
|
||||||
|
"config",
|
||||||
|
"--global",
|
||||||
|
"--unset",
|
||||||
|
"https.proxy"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
36
configs/wsl_user_npm.json
Normal file
36
configs/wsl_user_npm.json
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
{
|
||||||
|
"name": "WSL - User - NPM",
|
||||||
|
"cmd": "wsl npm",
|
||||||
|
"set": [
|
||||||
|
{
|
||||||
|
"args": [
|
||||||
|
"config",
|
||||||
|
"set",
|
||||||
|
"proxy"
|
||||||
|
],
|
||||||
|
"equator": "="
|
||||||
|
}, {
|
||||||
|
"args": [
|
||||||
|
"config",
|
||||||
|
"set",
|
||||||
|
"https-proxy"
|
||||||
|
],
|
||||||
|
"equator": "="
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"unset": [
|
||||||
|
{
|
||||||
|
"args": [
|
||||||
|
"config",
|
||||||
|
"delete",
|
||||||
|
"proxy"
|
||||||
|
]
|
||||||
|
}, {
|
||||||
|
"args": [
|
||||||
|
"config",
|
||||||
|
"delete",
|
||||||
|
"https-proxy"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
22
configs/wsl_user_pip.json
Normal file
22
configs/wsl_user_pip.json
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
{
|
||||||
|
"name": "WSL - User - Pip",
|
||||||
|
"cmd": "wsl pip",
|
||||||
|
"set": [
|
||||||
|
{
|
||||||
|
"args": [
|
||||||
|
"config",
|
||||||
|
"set",
|
||||||
|
"global.proxy"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"unset": [
|
||||||
|
{
|
||||||
|
"args": [
|
||||||
|
"config",
|
||||||
|
"unset",
|
||||||
|
"global.proxy"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user