mirror of
https://github.com/Baipyrus/ProxySwitcher.git
synced 2024-12-26 20:51:45 +00:00
30 lines
548 B
Go
30 lines
548 B
Go
package proxy
|
|
|
|
import (
|
|
"github.com/Baipyrus/ProxySwitcher/util"
|
|
)
|
|
|
|
func Unset() {
|
|
stdin, closeFunc, _ := util.ReadyCmd()
|
|
|
|
// Unset system proxy, if not already
|
|
proxy, _ := ReadSystemProxy()
|
|
if proxy.Enabled {
|
|
SetSystemProxy(false)
|
|
}
|
|
|
|
configs, _ := util.ReadConfigs()
|
|
for _, config := range configs {
|
|
configCmd := config.Name
|
|
// Use command instead of name, if given
|
|
if config.Cmd != "" {
|
|
configCmd = config.Cmd
|
|
}
|
|
|
|
commands := generateCommands(config.Unset, configCmd, "")
|
|
util.ExecCmds(commands, stdin)
|
|
}
|
|
|
|
closeFunc()
|
|
}
|