ProxySwitcher/proxy/set.go

32 lines
593 B
Go
Raw Normal View History

//go:build windows
2024-08-31 16:01:58 +00:00
package proxy
import (
"github.com/Baipyrus/ProxySwitcher/util"
)
func Set(cfgPath string) {
stdin, closeFunc, _ := util.ReadyCmd()
proxy, _ := ReadSystemProxy()
// Set system proxy, if not already
if !proxy.Enabled {
SetSystemProxy(true)
}
configs, _ := util.ReadConfigs(cfgPath)
for _, config := range configs {
configCmd := config.Name
// Use command instead of name, if given
if config.Cmd != "" {
configCmd = config.Cmd
}
commands := generateCommands(configCmd, config.Set, proxy.Server)
util.ExecCmds(commands, stdin)
}
closeFunc()
2024-08-31 16:01:58 +00:00
}