[rofi] Update default browser

This commit is contained in:
2021-05-10 00:46:41 -04:00
parent b19e46846d
commit f7dbf7ce17
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
/home/powellc/.asdf/shims/qutebrowser ":open -w $url"
firefox --new-window --search "$url"
else
exit
fi

View File

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

View File

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

View File

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