Stefan Hagen

Results 125 comments of Stefan Hagen

Have you tried `luakit -U`? If you do not want any session handling ever, you can comment the session plugin and change these lines at the very end of `rc.lua`...

I'm doing it from userconf.lua: ``` local styles = require "styles" follow.stylesheet = follow.stylesheet .. [===[ #luakit_select_overlay .hint_label { background-color: #f8f8f8; border: 1px solid #f00; padding: 1px; color: #181818; font-size:...

Hmm. The theme hints should work too, if they're not overwritten by a style. See https://github.com/luakit/luakit/blob/develop/lib/follow.lua#L141

The warning can be ignored. It's just telling you that the `webkit_web_context_set_web_process_count_limit` has no effect. You can limit the web processes by setting `WEBKIT_USE_SINGLE_WEB_PROCESS=1` in your environment before starting luakit....

Can you try setting `webview.hardware_acceleration_policy` to `always`? I remember that I had similiar issues when hw-accelleration was turned that off (either by me or by the system). Is the performance...

I think it's related to HW accelaration rather than JS. This "half page displayed" is something I had too for a while. Unfortunately I don't know what fixed it. I...

A keyboard centric browser on android? I doubt people want this. But feel free to try and we'll do our best to help with issues.

It happens here too (on OpenBSD), but it doesn't happen on the connected Travis CI Ubuntu machine.

I noticed in a few places that changes become active after an additional request. For example enabling/disabling javascript with the noscript plugin has strange effects. You can test it here:...

The title is not instantly restored from the history, but updated from whatever page is loaded. This happens async and we need to wait for the `property::title` signal until we...