Revert "[rofi] Update default browser"

This reverts commit f7dbf7ce17.
This commit is contained in:
2021-05-10 10:37:53 -04:00
parent f7dbf7ce17
commit 5fa9d465df
4 changed files with 4 additions and 4 deletions

View File

@ -16,7 +16,7 @@ main() {
query=$( rofi -dmenu -matching fuzzy -location 0 -p "Query > " )
if [[ -n "$query" ]]; then
url=$URL$query
firefox --new-window --search "$url"
/home/powellc/.asdf/shims/qutebrowser ":open -w $url"
else
exit
fi

View File

@ -67,7 +67,7 @@ main() {
if [[ -n "$query" ]]; then
URL=${URLS[$platform]}$(urlencode "$query")
firefox --new-window $URL
qutebrowser --target window $URL
else
exit
fi

View File

@ -18,4 +18,4 @@ if [ "$URL" = "" ]; then
exit 0
fi
firefox --private-window --search "$URL"
qutebrowser --target private-window "$URL"

View File

@ -22,4 +22,4 @@ if [ "$URL" = "" ]; then
exit 0
fi
firefox --new-window --search "$URL"
qutebrowser --target window "$URL"