2014-06-20 13:30:20 +02:00
Frequently asked questions
==========================
The Compiler <mail@qutebrowser.org>
[qanda]
What is qutebrowser based on?::
qutebrowser uses http://www.python.org/[Python], http://qt-project.org/[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
2014-11-19 22:46:52 +01:00
keybindings 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
2014-07-23 19:38:04 +02:00
link:http://qt-project.org/[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
+
2014-07-23 20:19:01 +02:00
The newer http://webkitgtk.org/reference/webkit2gtk/stable/index.html[WebKit2
API] seems to lack basic features like proxy support, and almost no projects
seem to have started porting to WebKit2 (I only know of
http://www.uzbl.org/[uzbl]).
2014-07-23 20:17:08 +02:00
+
2014-07-23 20:19:01 +02:00
qutebrowser uses http://qt-project.org/[Qt] and
http://qt-project.org/wiki/QtWebKit[QtWebKit] instead, which suffers from far
less such crashes. It might switch to
http://qt-project.org/wiki/QtWebEngine[QtWebEngine] in the future, which is
based on Google's https://en.wikipedia.org/wiki/Blink_(layout_engine)[Blink]
rendering engine.
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
2014-06-24 15:27:06 +02:00
choices. I wanted to use http://qt-project.org/[Qt] because of
2014-06-20 13:30:20 +02:00
http://qt-project.org/wiki/QtWebKit[QtWebKit] so I didn't have
http://qt-project.org/wiki/Category:LanguageBindings[many other choices]. I
don't like C++ and can't write it very well, so that wasn't an alternative.
But isn't Python too slow for a browser?::
http://www.infoworld.com/d/application-development/van-rossum-python-not-too-slow-188715[No.]
I believe efficency while coding is a lot more important than efficency
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.
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
usage], so implementing it properly might take some time and won't be done
2014-11-26 20:26:11 +01:00
for v0.1 if at all.
2014-09-30 17:43:41 +02:00
2014-12-24 01:05:23 +01:00
== Troubleshooting
2014-12-24 01:17:57 +01:00
Configuration not saved after modifying config.::
2014-12-25 04:12:54 +01:00
When editing your config file manually, qutebrowser must be exited completely.
2014-12-25 04:25:07 +01:00
Either by issuing the command `:quit` or by pressing `ctrl+q`.
2014-12-24 01:05:23 +01:00
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
2014-12-24 01:05:23 +01:00
to use the flash plugin. Using the command `:set content allow-plugins true`
2014-12-25 04:12:54 +01:00
in qutebrowser will enable plugins. Packages for flash should
2014-12-24 01:05:23 +01:00
be provided for your platform. Read any help documentation with regards to
installing flash from your operating systems. Flash can also be
obtained from http://get.adobe.com/flashplayer/[Adobe].
2014-12-24 01:17:57 +01:00
This can also be set manually in your config file located in
2014-12-24 01:05:23 +01:00
`~/.config/qutebrowser/qutebrowser.conf` on *nix systems. Before editing be
sure to exit completely. Locate the line `allow-plugins = false` and change
to `allow-plugins = true` save the file and load your browser and enjoy flash!
2014-12-25 04:12:54 +01:00
2014-12-24 01:05:23 +01:00
Experiencing freezing on sites like duckduckgo and youtube.::
When visiting some pages and you experience freezing, unable to close or unable exit
2014-12-25 04:12:54 +01:00
the browser. This can be solved by disabling plugins, or checking if you have
a package installed called mozplugger on your system. On Archlinux
2014-12-24 01:05:23 +01:00
and Debian/Ubuntu systems the package is called mozplugger. After removing the
2014-12-25 04:12:54 +01:00
package, you may need to also delete a few files in your home plugin dir. They are so
named `~/.mozilla/plugins/mozplugger*.so`. Be sure to exit the browser completely before
2014-12-24 01:05:23 +01:00
removing any plugins manually. See https://github.com/The-Compiler/qutebrowser/issues/357[Issue #357]
for more details.
Experiencing segfaults (crashes) on Debian systems.::
2014-12-24 01:17:57 +01:00
For Debian it's necessary to install the `gstreamer0.10-plugins-base` package.
2014-12-25 04:44:32 +01:00
This is a workaround for a bug in Qt, it has been fixed upstream in Qt 5.4
2014-12-25 04:12:54 +01:00
More details can be found
https://bugs.webkit.org/show_bug.cgi?id=119951[here] and
https://bugs.webkit.org/show_bug.cgi?id=119951[here].
2014-12-24 01:05:23 +01:00
2014-12-25 04:12:54 +01:00
My issue is not listed.::
If you experience any segfaults or crashes, you can report the issue on
2014-12-24 01:05:23 +01:00
https://github.com/The-Compiler/qutebrowser/issues[qutebrowser issues].
Be sure to read over how to create a stacktrace to report crashes of unknown cause
2014-12-25 04:12:54 +01:00
by visiting https://github.com/The-Compiler/qutebrowser/blob/master/doc/stacktrace.asciidoc[reporting segfaults].
2014-12-24 01:05:23 +01:00
2014-09-30 17:43:41 +02:00
// We link to github rather than to the file here so it also works with the
// qutebrowser :help because that doesn't render HACKING.