[rofi] Switch to firefox

This commit is contained in:
2021-08-20 09:46:56 -04:00
parent 25476f17bf
commit 12a7240b9d
3 changed files with 10 additions and 6 deletions

View File

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