dotfiles/.local/scripts/browserprompt.fish

15 lines
292 B
Fish
Raw Normal View History

2026-01-30 20:36:20 +01:00
#!/usr/bin/env fish
2026-02-09 15:08:16 +01:00
set default "https://marginalia-search.com/search?query="
2026-02-09 21:47:15 +01:00
set ddg "https://duckduckgo.com/?q="
2026-01-30 20:36:20 +01:00
set input (prompt)
2026-02-09 21:47:15 +01:00
set split_input (string split -m 1 ":" $input)
2026-01-30 20:36:20 +01:00
2026-02-09 21:47:15 +01:00
switch $split_input[1]
case "d"
xdg-open "$ddg$split_input[2]"
case "*"
xdg-open "$default$input"
end