15 lines
284 B
Fish
15 lines
284 B
Fish
|
|
#!/usr/bin/env fish
|
||
|
|
|
||
|
|
set default "https://duckduckgo.com/?q="
|
||
|
|
set wiki "https://en.wikipedia.org/?search="
|
||
|
|
|
||
|
|
set input (prompt)
|
||
|
|
set split_input (string split -m 1 ":" $input)
|
||
|
|
|
||
|
|
switch $split_input[1]
|
||
|
|
case "w"
|
||
|
|
xdg-open "$wiki$split_input[2]"
|
||
|
|
case "*"
|
||
|
|
xdg-open "$default$input"
|
||
|
|
end
|