diff --git a/cmd/save.go b/cmd/save.go index 737c322..b819d18 100644 --- a/cmd/save.go +++ b/cmd/save.go @@ -12,9 +12,9 @@ import ( // saveCmd represents the save command var saveCmd = &cobra.Command{ Use: "save", - Short: "Save some new internet proxy settings", + Short: "Save a new internet proxy config", Run: func(cmd *cobra.Command, args []string) { - fmt.Printf("Saving New Proxy Settings...\n") + fmt.Printf("Saving New Proxy Config...\n") // Block process until interrupted done := make(chan os.Signal, 1) diff --git a/run.ps1 b/run.ps1 index a79f49d..b3e7ea7 100644 --- a/run.ps1 +++ b/run.ps1 @@ -37,7 +37,7 @@ $ctxDisable.Add_Click({ # Add "Save Proxy Setting" menu item $ctxSave = New-Object System.Windows.Forms.ToolStripMenuItem -$ctxSave.Text = 'Save New Proxy' +$ctxSave.Text = 'Save New Config' $ctxSave.Add_Click({ Start-Process powershell.exe -ArgumentList '-Command', 'go run . save' })