mirror of
https://code.dumpstack.io/tools/wi.git
synced 2024-11-13 05:59:19 +02:00
Use duckduckgo as default search engine
This commit is contained in:
parent
2ee8189fde
commit
b95b24b6f4
5
main.go
5
main.go
|
@ -56,7 +56,7 @@ var (
|
|||
historyListItems = historyList.Arg("items", "Amount of items").Int64()
|
||||
historyListAll = historyList.Flag("all", "Show all items").Bool()
|
||||
|
||||
search = kingpin.Command("search", "Search engine (google by default)")
|
||||
search = kingpin.Command("search", "Search by duckduckgo")
|
||||
searchArgs = SearchList(search.Arg("string", "String for search"))
|
||||
)
|
||||
|
||||
|
@ -103,7 +103,6 @@ func main() {
|
|||
case "history":
|
||||
commands.History(db, *historyListItems, 20, *historyListAll)
|
||||
case "search":
|
||||
// FIXME: currenlty supports only Google
|
||||
commands.Get(db, jar, "https://google.com/search?q="+strings.Join(*searchArgs, "+"))
|
||||
commands.Get(db, jar, "https://duckduckgo.com/html/?q="+strings.Join(*searchArgs, "+"))
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue