Update something

This commit is contained in:
tiff 2025-06-13 00:44:52 -04:00
parent 147ca5ddbc
commit cd7248fdc7

View file

@ -7,18 +7,18 @@ QUERY="$*"
ENCODED_QUERY=$(echo "$QUERY" | sed 's/ /+/g') ENCODED_QUERY=$(echo "$QUERY" | sed 's/ /+/g')
case "$ENGINE" in case "$ENGINE" in
yt) yt)
xdg-open "https://www.youtube.com/results?search_query=$ENCODED_QUERY" xdg-open "https://www.youtube.com/results?search_query=$ENCODED_QUERY"
;; ;;
wikipedia) wikipedia)
xdg-open "https://en.wikipedia.org/wiki/Special:Search?search=$ENCODED_QUERY" xdg-open "https://en.wikipedia.org/wiki/Special:Search?search=$ENCODED_QUERY"
;; ;;
duckduckgo) searchxng)
xdg-open "https://duckduckgo.com/?q=$ENCODED_QUERY" xdg-open "https://findit.yerp.lat?q=$ENCODED_QUERY"
;; ;;
*) *)
QUERY="$ENGINE $QUERY" QUERY="$ENGINE $QUERY"
ENCODED_QUERY=$(echo "$QUERY" | sed 's/ /+/g') ENCODED_QUERY=$(echo "$QUERY" | sed 's/ /+/g')
xdg-open "https://www.google.com/search?q=$ENCODED_QUERY" xdg-open "https://www.google.com/search?q=$ENCODED_QUERY"
;; ;;
esac esac