2014-06-20 13:30:20 +02:00
Frequently asked questions
==========================
2015-10-21 21:02:27 +02:00
:title: Frequently asked questions
2014-06-20 13:30:20 +02:00
The Compiler <mail@qutebrowser.org>
[qanda]
What is qutebrowser based on?::
2015-06-12 16:59:33 +02:00
qutebrowser uses http://www.python.org/[Python], http://qt.io/[Qt] and
http://www.riverbankcomputing.com/software/pyqt/intro[PyQt].
2014-07-23 20:17:08 +02:00
+
2014-07-23 20:19:01 +02:00
The concept of it is largely inspired by http://portix.bitbucket.org/dwb/[dwb]
and http://www.vimperator.org/vimperator[Vimperator]. Many actions and
2015-03-31 20:49:29 +02:00
key bindings are similar to dwb.
2014-06-20 13:30:20 +02:00
Why another browser?::
It might be hard to believe, but I didn't find any browser which I was
happy with, so I started to write my own. Also, I needed a project to get
into writing GUI applications with Python and
2015-06-12 16:59:33 +02:00
link:http://qt.io/[Qt]/link:http://www.riverbankcomputing.com/software/pyqt/intro[PyQt].
2014-07-23 20:17:08 +02:00
+
2014-07-23 20:19:01 +02:00
Read the next few questions to find out why I was unhappy with existing
software.
2014-06-20 13:30:20 +02:00
2014-07-23 19:38:04 +02:00
What's wrong with link:http://portix.bitbucket.org/dwb/[dwb]/link:http://sourceforge.net/projects/vimprobable/[vimprobable]/link:https://mason-larobina.github.io/luakit/[luakit]/link:http://pwmt.org/projects/jumanji/[jumanji]/... (projects based on WebKitGTK)?::
2014-06-20 13:30:20 +02:00
Most of them are based on the http://webkitgtk.org/[WebKitGTK+]
http://webkitgtk.org/reference/webkitgtk/stable/index.html[WebKit1] API,
2014-06-23 15:22:22 +02:00
which causes a lot of crashes. As the GTK API using WebKit1 is
2014-06-20 13:30:20 +02:00
https://lists.webkit.org/pipermail/webkit-gtk/2014-March/001821.html[deprecated],
these bugs are never going to be fixed.
2014-07-23 20:17:08 +02:00
+
2017-11-08 16:44:46 +01:00
When qutebrowser was created, the newer
http://webkitgtk.org/reference/webkit2gtk/stable/index.html[WebKit2 API] lacked
basic features like proxy support, and almost no projects have started porting
to WebKit2. In the meantime, this situation has improved a bit, but there are
2018-03-08 12:58:17 +01:00
still only a few projects which have some kind of WebKit2 support (see the
2017-11-08 16:44:46 +01:00
https://github.com/qutebrowser/qutebrowser#similar-projects[list of
alternatives]).
2014-07-23 20:17:08 +02:00
+
2017-11-08 16:44:46 +01:00
qutebrowser uses http://qt.io/[Qt] and
http://wiki.qt.io/QtWebEngine[QtWebEngine] by default (and supports
http://wiki.qt.io/QtWebKit[QtWebKit] optionally). QtWebEngine is based on
Google's https://www.chromium.org/Home[Chromium]. With an up-to-date Qt, it has
much more man-power behind it than WebKitGTK+ has, and thus supports more modern
web features - it's also arguably more secure.
2014-06-20 13:30:20 +02:00
2014-07-23 19:38:04 +02:00
What's wrong with https://www.mozilla.org/en-US/firefox/new/[Firefox] and link:http://5digits.org/pentadactyl/[Pentadactyl]/link:http://www.vimperator.org/vimperator[Vimperator]?::
2014-06-20 13:30:20 +02:00
Firefox likes to break compatibility with addons on each upgrade, gets
slower and more bloated with every upgrade, and has some
https://blog.mozilla.org/advancingcontent/2014/02/11/publisher-transformation-with-users-at-the-center/[horrible
ideas] lately.
2014-07-23 20:17:08 +02:00
+
2014-07-23 20:19:01 +02:00
Also, developing addons for it is a nightmare.
2014-06-20 13:30:20 +02:00
What's wrong with http://www.chromium.org/Home[Chromium] and https://vimium.github.io/[Vimium]?::
The Chrome plugin API doesn't seem to allow much freedom for plugin
writers, which results in Vimium not really having all the features you'd
expect from a proper minimal, vim-like browser.
Why Python?::
I enjoy writing Python since 2011, which made it one of the possible
2015-06-12 16:59:33 +02:00
choices. I wanted to use http://qt.io/[Qt] because of
http://wiki.qt.io/QtWebKit[QtWebKit] so I didn't have
http://wiki.qt.io/Category:LanguageBindings[many other choices]. I don't
like C++ and can't write it very well, so that wasn't an alternative.
2014-06-20 13:30:20 +02:00
But isn't Python too slow for a browser?::
http://www.infoworld.com/d/application-development/van-rossum-python-not-too-slow-188715[No.]
2015-10-04 15:41:42 +02:00
I believe efficiency while coding is a lot more important than efficiency
2014-06-20 13:30:20 +02:00
while running. Also, most of the heavy lifting of qutebrowser is done by Qt
and WebKit in C++, with the
https://wiki.python.org/moin/GlobalInterpreterLock[GIL] released.
2018-03-08 12:58:17 +01:00
Is qutebrowser secure?::
Most security issues are in the backend (which handles networking,
rendering, JavaScript, etc.) and not qutebrowser itself.
+
qutebrowser uses http://wiki.qt.io/QtWebEngine[QtWebEngine] by default.
QtWebEngine is based on Google's https://www.chromium.org/Home[Chromium]. While
Qt only updates to a new Chromium release on every minor Qt release (all ~6
months), every patch release backports security fixes from newer Chromium
versions. In other words: As long as you're using an up-to-date Qt, you should
be recieving security updates on a regular basis, without qutebrowser having to
do anything. Chromium's process isolation and
https://chromium.googlesource.com/chromium/src/+/master/docs/design/sandbox.md[sandboxing]
features are also enabled as a second line of defense.
+
http://wiki.qt.io/QtWebKit[QtWebKit] is also supported as an alternative
backend, but hasn't seen new releases
https://github.com/annulen/webkit/releases[in a while]. It also doesn't have any
process isolation or sandboxing.
+
Security issues in qutebrowser's code happen very rarely (as per March 2018,
there has been one security issue caused by qutebrowser in over four years) and
are fixed timely. To report security bugs, please contact me directly at
mail@qutebrowser.org, GPG ID
https://www.the-compiler.org/pubkey.asc[0x916eb0c8fd55a072].
2014-06-20 13:30:20 +02:00
Is there an adblocker?::
2014-11-26 20:26:11 +01:00
There is a host-based adblocker which takes /etc/hosts-like lists. A "real"
adblocker has a
2014-06-20 13:30:20 +02:00
http://www.reddit.com/r/programming/comments/25j41u/adblock_pluss_effect_on_firefoxs_memory_usage/chhpomw[big
impact] on browsing speed and
https://blog.mozilla.org/nnethercote/2014/05/14/adblock-pluss-effect-on-firefoxs-memory-usage/[RAM
2017-06-17 15:47:39 +02:00
usage], so implementing support for AdBlockPlus-like lists is currently not
a priority.
2014-09-30 17:43:41 +02:00
2015-02-14 00:35:55 +01:00
How do I play Youtube videos with mpv?::
2015-03-31 20:49:29 +02:00
You can easily add a key binding to play youtube videos inside a real video
2015-02-14 00:35:55 +01:00
player - optionally even with hinting for links:
+
----
2016-05-03 11:12:20 +02:00
:bind m spawn mpv {url}
:bind M hint links spawn mpv {hint-url}
2015-02-14 00:35:55 +01:00
----
2015-08-31 20:57:18 +02:00
+
Note that you might need an additional package (e.g.
https://www.archlinux.org/packages/community/any/youtube-dl/[youtube-dl] on
Archlinux) to play web videos with mpv.
2016-05-03 11:12:20 +02:00
+
There is a very useful script for mpv, which emulates "unique application"
functionality. This way you can add links to the mpv playlist instead of
playing them all at once.
+
You can find the script here: https://github.com/mpv-player/mpv/blob/master/TOOLS/umpv
+
It also works nicely with rapid hints:
+
----
:bind m spawn umpv {url}
:bind M hint links spawn umpv {hint-url}
:bind ;M hint --rapid links spawn umpv {hint-url}
----
2015-02-14 00:35:55 +01:00
2015-11-12 20:35:48 +01:00
How do I use qutebrowser with mutt?::
Due to a Qt limitation, local files without `.html` extensions are
"downloaded" instead of displayed, see
2017-02-05 00:13:11 +01:00
https://github.com/qutebrowser/qutebrowser/issues/566[#566]. You can work
2015-11-12 20:35:48 +01:00
around this by using this in your `mailcap`:
+
----
text/html; mv %s %s.html && qutebrowser %s.html >/dev/null 2>/dev/null; needsterminal;
----
2017-01-11 19:12:42 +01:00
What is the difference between bookmarks and quickmarks?::
Bookmarks will always use the title of the website as their name, but with quickmarks
you can set your own title.
+
For example, if you bookmark multiple food recipe websites and use `:open`,
you have to type the title or address of the website.
+
When using quickmark, you can give them all names, like
`foodrecipes1`, `foodrecipes2` and so on. When you type
`:open foodrecipes`, you will see a list of all the food recipe sites,
without having to remember the exact website title or address.
2017-03-31 19:51:04 +02:00
How do I use spell checking?::
2017-10-08 15:24:48 +02:00
Configuring spell checking in qutebrowser depends on the backend in use
2017-10-07 21:54:22 +02:00
(see https://github.com/qutebrowser/qutebrowser/issues/700[#700] for
a more detailed discussion).
2017-03-31 19:51:04 +02:00
+
For QtWebKit:
. Install https://github.com/QupZilla/qtwebkit-plugins[qtwebkit-plugins].
. Note: with QtWebKit reloaded you may experience some issues. See
https://github.com/QupZilla/qtwebkit-plugins/issues/10[#10].
. The dictionary to use is taken from the `DICTIONARY` environment variable.
The default is `en_US`. For example to use Dutch spell check set `DICTIONARY`
to `nl_NL`; you can't use multiple dictionaries or change them at runtime at
the moment.
(also see the README file for `qtwebkit-plugins`).
. Remember to install the hunspell dictionaries if you don't have them already
(most distros should have packages for this).
+
For QtWebEngine:
2017-10-08 15:24:48 +02:00
. Make sure your versions of PyQt and Qt are 5.8 or higher.
2017-11-07 07:21:07 +01:00
. Use `dictcli.py` script to install dictionaries.
2017-10-07 21:54:22 +02:00
Run the script with `-h` for the parameter description.
. Set `spellcheck.languages` to the desired list of languages, e.g.:
`:set spellcheck.languages "['en-US', 'pl-PL']"`
2017-03-31 19:51:04 +02:00
2017-05-23 22:23:15 +02:00
How do I use Tor with qutebrowser?::
2017-10-31 14:41:36 +01:00
Start tor on your machine, and do `:set content.proxy socks://localhost:9050/`
2017-05-23 22:23:15 +02:00
in qutebrowser. Note this won't give you the same amount of fingerprinting
protection that the Tor Browser does, but it's useful to be able to access
`.onion` sites.
2017-06-04 15:11:08 +02:00
Why does J move to the next (right) tab, and K to the previous (left) one?::
One reason is because https://bitbucket.org/portix/dwb[dwb] did it that way,
and qutebrowser's keybindings are designed to be compatible with dwb's.
The rationale behind it is that J is "down" in vim, and K is "up", which
corresponds nicely to "next"/"previous". It also makes much more sense with
2017-10-31 14:41:36 +01:00
vertical tabs (e.g. `:set tabs.position left`).
2017-06-04 15:11:08 +02:00
What's the difference between insert and passthrough mode?::
They are quite similar, but insert mode has some bindings (like `Ctrl-e` to
open an editor) while passthrough mode only has escape bound. It might also
be useful to rebind escape to something else in passthrough mode only, to be
able to send an escape keypress to the website.
2017-07-09 13:45:16 +02:00
Why takes it longer to open an URL in qutebrowser than in chromium?::
When opening an URL in an existing instance the normal qutebrowser
2017-07-09 22:12:17 +02:00
Python script is started and a few PyQt libraries need to be
2017-07-09 13:45:16 +02:00
loaded until it is detected that there is an instance running
2017-07-09 14:10:08 +02:00
where the URL is then passed to. This takes some time.
One workaround is to use this
2017-07-09 13:45:16 +02:00
https://github.com/qutebrowser/qutebrowser/blob/master/scripts/open_url_in_instance.sh[script]
and place it in your $PATH with the name "qutebrowser". This
script passes the URL via an unix socket to qutebrowser (if its
running already) using socat which is much faster and starts a new
qutebrowser if it is not running already. Also check if you want
to use webengine as backend in line 17 and change it to your
needs.
2018-03-14 07:48:46 +01:00
How do I make qutebrowser use greasemonkey scripts?::
There is currently no UI elements to handle managing greasemonkey scripts.
All management of what scripts are installed or disabled is done in the
filesystem by you. qutebrowser reads all files that have an extension of
`.js` from the `<data>/greasemonkey/` folder and attempts to load them.
Where `<data>` is the qutebrowser data directory shown in the `Paths`
section of the page displayed by `:version`. If you want to disable a
script just rename it, for example, to have `.disabled` on the end, after
the `.js` extension. To reload scripts from that directory run the command
`:greasemonkey-reload`.
+
Troubleshooting: to check that your script is being loaded when
2018-03-14 08:19:51 +01:00
`:greasemonkey-reload` runs you can start qutebrowser with the arguments
`--debug --logfilter greasemonkey,js` and check the messages on the
program's standard output for errors parsing or loading your script.
You may also see javascript errors if your script is expecting an environment
that we fail to provide.
2018-03-14 07:48:46 +01:00
+
Note that there are some missing features which you may run into:
. Some scripts expect `GM_xmlhttpRequest` to ignore Cross Origin Resource
2018-03-14 08:19:51 +01:00
Sharing restrictions, this is currently not supported, so scripts making
2018-03-14 07:48:46 +01:00
requests to third party sites will often fail to function correctly.
2018-03-14 08:19:51 +01:00
. If your backend is a QtWebEngine version 5.8, 5.9 or 5.10 then regular
expressions are not supported in `@include` or `@exclude` rules. If your
script uses them you can re-write them to use glob expressions or convert
them to `@match` rules.
See https://wiki.greasespot.net/Metadata_Block[the wiki] for more info.
2018-03-14 07:48:46 +01:00
. Any greasemonkey API function to do with adding UI elements is not currently
supported. That means context menu extentensions and background pages.
2017-07-09 13:45:16 +02:00
2014-12-24 01:05:23 +01:00
== Troubleshooting
Unable to view flash content.::
2014-12-24 01:17:57 +01:00
If you have flash installed for on your system, it's necessary to enable plugins
2017-07-04 15:43:54 +02:00
to use the flash plugin. Using the command `:set content.plugins true`
2014-12-25 04:12:54 +01:00
in qutebrowser will enable plugins. Packages for flash should
2014-12-28 01:52:48 +01:00
be provided for your platform or it can be obtained from
http://get.adobe.com/flashplayer/[Adobe].
2014-12-25 04:12:54 +01:00
2014-12-24 01:05:23 +01:00
Experiencing freezing on sites like duckduckgo and youtube.::
2014-12-28 01:52:48 +01:00
This issue could be caused by stale plugin files installed by `mozplugger`
if mozplugger was subsequently removed.
2015-10-04 15:41:42 +02:00
Try exiting qutebrowser and removing `~/.mozilla/plugins/mozplugger*.so`.
2017-02-05 00:13:11 +01:00
See https://github.com/qutebrowser/qutebrowser/issues/357[Issue #357]
2014-12-24 01:05:23 +01:00
for more details.
2017-07-24 10:58:45 +02:00
When using QtWebEngine, qutebrowser reports "Render Process Crashed" and the console prints a traceback on Gentoo Linux or another Source-Based Distro::
As stated in https://gcc.gnu.org/gcc-6/changes.html[GCC's Website] GCC 6 has introduced some optimizations that could break non-conforming codebases, like QtWebEngine. +
As a workaround, you can disable the nullpointer check optimization by adding the -fno-delete-null-pointer-checks flag while compiling. +
On gentoo, you just need to add it into your make.conf, like this: +
CFLAGS="... -fno-delete-null-pointer-checks"
CXXFLAGS="... -fno-delete-null-pointer-checks"
+
And then re-emerging qtwebengine with: +
emerge -1 qtwebengine
2018-02-07 00:23:09 +01:00
Unable to view DRM content (Netflix, Spotify, etc.).::
You will need to install `widevine` and set `qt.args` to point to it.
2018-02-10 10:41:57 +01:00
Qt 5.9 currently only supports widevine up to Chrome version 61.
2018-02-07 00:23:09 +01:00
+
On Arch, simply install `qt5-webengine-widevine` from the AUR and run:
+
----
:set qt.args '["ppapi-widevine-path=/usr/lib/qt/plugins/ppapi/libwidevinecdmadapter.so"]'
:restart
----
+
For other distributions, download the chromium tarball and widevine-cdm zip from
https://aur.archlinux.org/packages/qt5-webengine-widevine/[the AUR page],
extract `libwidevinecdmadapter.so` and `libwidevinecdm.so` files, respectively,
2018-02-10 10:41:57 +01:00
and move them to the `ppapi` plugin directory in your Qt library directory (create it if it does not exist).
2018-02-07 00:23:09 +01:00
+
Lastly, set your `qt.args` to point to that directory and restart qutebrowser:
+
----
:set qt.args '["ppapi-widevine-path=/usr/lib64/qt5/plugins/ppapi/libwidevinecdmadapter.so"]'
:restart
----
2014-12-25 04:12:54 +01:00
My issue is not listed.::
2014-12-28 01:52:48 +01:00
If you experience any segfaults or crashes, you can report the issue in
2017-02-05 00:13:11 +01:00
https://github.com/qutebrowser/qutebrowser/issues[the issue tracker] or
2014-12-28 01:52:48 +01:00
using the `:report` command.
If you are reporting a segfault, make sure you read the
2017-12-19 18:18:10 +01:00
link:stacktrace.asciidoc[guide] on how to report them with all needed
2016-01-26 22:47:20 +01:00
information.