You are not logged in.
Sad to hear that too. Hopefully someone will continue maintenance.
Is there a way to get the URI of a currently downloading file?
PGP key: F40D2072
Key fingerprint: 8742 F753 5E7B 394A 1B04 8163 332C 9C40 F40D 2072
Offline
I don't know why pentadactyl doesn't already do that.
Last edited by nomorewindows (2014-10-14 22:00:34)
I may have to CONSOLE you about your usage of ridiculously easy graphical interfaces...
Look ma, no mouse.
Offline
After running dwb for 2 years now, I get a bit bothered by the memory consumption of it. Not that it uses much, but it seems to have leaks, as after running for 8 days, the memory usage grew slowly from 0.7% to over 10%. I had not that much web pages opened and they were all github.com. Most of the time, just one tab was opened with github.
I mean, a simple restart of dwb solves this kind of issue and the memory usage is back at 0.7%, but if the memory usage grows slowly, this must mean that there are some memory leaks in dwb, right? I would appreciate if someone could fix this!
Anyways, I love dwb and I will stick to it! It's awesome and I love it!
Edit: I have 16GB Ram, so 10% are 1,6G and 0.7% are about 160 MB or something like this.
Last edited by musicmatze (2014-09-27 14:18:33)
Offline
For me the memory use doesn't grow slowly, dwb just doesn't release the used memory like e.g. firefox does.
If I open a multimedia-heavy website and browse it for a while, then close the tab leaving the website, dwb memory use doesn't decline.
Offline
It is indeed a pity but, at least as far as I am concerned/affected, if webkit and its crashes (even though I am too aware that every computer is a world in itself) are giving the project a bad name I too would look out for greener pastures.
Looking forward to your new project portix (and it hopefully being non-SSE2 equipment compatible!).
\(o_X)/
'Cause I wanna be an Archy - An Archy in the UK // Sex Pistols
Offline
Looking forward to your new project portix (and it hopefully being non-SSE2 equipment compatible!).
Wait, new project? Did I miss something?
Offline
root wrote:Looking forward to your new project portix (and it hopefully being non-SSE2 equipment compatible!).
Wait, new project? Did I miss something?
Right there in the previous page.
It seems that portix himself did also mention it, see here.
\(o_X)/
'Cause I wanna be an Archy - An Archy in the UK // Sex Pistols
Offline
root wrote:Looking forward to your new project portix (and it hopefully being non-SSE2 equipment compatible!).
Wait, new project? Did I miss something?
Offline
\o/
If you read this portix, please make it happen! DOOO EEET! PLZ!
Offline
I'm trying to feed the HTML from my email (emacs,mu4e) into dwb using dwbremote. I've experimented with:
This works and correctly renders:
dwbremote :load_html_tab my.html
These do not work:
dwbremote :load_html_tab <(cat my.html) # goes to Wikipedia for "/dev/fd/..."
cat out | dwbremote :load_html_tab - # goes to Wikipedia for "dash"
mkfifo xfifo
cat my.html > xfifo &
dwbremote :load_html_tab xfifo # goes to Wikipedia for "xfifo"
It seems as though dwb checks that the parameter is a genuine file and only then will read it, otherwise it's like you typed it as a URL. (Apparently Wikipedia is my default search engine)
Is there a way to make dwb read a stream of HTML without creating a file?
TIA
Arch + awesome
Offline
I'm not sure any browser could do that - browsers need a 'seekable' file. Even textmode browsers fail on this.
I have something set up for my email in mutt to do something similar, but mutt creates a temporary file (/tmp/muttXXXXX) then opens that in my browser.
"UNIX is simple and coherent" - Dennis Ritchie; "GNU's Not Unix" - Richard Stallman
Offline
I'm not sure any browser could do that - browsers need a 'seekable' file. Even textmode browsers fail on this.
I have something set up for my email in mutt to do something similar, but mutt creates a temporary file (/tmp/muttXXXXX) then opens that in my browser.
Ah, ok, I didn't think it would need to seek for simply reading HTML since it doesn't seek when reading from a network socket. Thanks for your answer, I'll just use a temp file then.
Arch + awesome
Offline
it doesn't seek when reading from a network socket.
That's a good point. Perhaps my reasoning is flawed, but the observation is reliable: I've never known a browser to render piped data.
"UNIX is simple and coherent" - Dennis Ritchie; "GNU's Not Unix" - Richard Stallman
Offline
Hello there,
After a few months with Conkeror, I'm switching to dwb, which seems simpler and faster (although unmaintained, it now seems).
One thing I did with Conkeror is restrict hints to result links in Google, so I can hit "f" then "1" to jump to the first result, "f" then "2" for the second, etc.
The best I could come up with in dwb is:
//!javascript
new Signal("navigation",
function (_, _, req) {
if (req.uri.match(/https?:\/\/www\.google\.[^\/]+\/search\?/)) {
hint("f", null, null, "h3 a");
} else {
hint("f", null, null, "");
}
}
).connect();
It works ok, but it's not perfect. In particular, I don't know how to do the same with "F" to open a link in a new tab. So, does anybody has a better idea?
(The "perdomainsettings" extension doesn't help here, since it changes settings, not keys; and I can't see how to do the same with keys, unless you want to parse the "data.keys" file?)
Best,
Paul
Offline
Is flash known to not work with dwb-gtk3-git or am I missing something? At least it doesn't work for me ("missing plugin" messages) since I switches to the gtk3 version...
Offline
Is flash known to not work with dwb-gtk3-git or am I missing something? At least it doesn't work for me ("missing plugin" messages) since I switches to the gtk3 version...
If I remember correctly, flash plugin doesnt work out-of-the-box with gtk3-webkit. Using nspluginwrapper might get it working with gtk3 but I haven't done that myself.
Offline
Does anyone knows how to disable SSLv3 on dwb?
https://poodle.io/browsers.html
Or I have to abandon dwb and only use Firefox or Chromium/Chrome?
Offline
Poodle has been a recent problem and ssl 3 is poodle I think.
I may have to CONSOLE you about your usage of ridiculously easy graphical interfaces...
Look ma, no mouse.
Offline
I've tried searching on here and google but no luck.
On dwb whenever I visit a google related website: google, gmail, etc. it throws up the error:
------------------------------------------
Unable to load page
Problem occurred while loading the URL https://www.google.co.uk/search?output= … s_l=&pbx=1
Unacceptable TLS certificate.
------------------------------------------
I really have no idea about this, I've tried update-ca-certificates but nothing, also certutil -L returns
certutil: function failed: SEC_ERROR_LEGACY_DATABASE: The certificate/key database is in an old, unsupported format.
I don't even know what log files to show?
Any help would be greatly appreciated!
Last edited by teatreetea (2014-10-27 21:30:18)
Offline
Maybe you would get more user 'input', even from the dwb programmer portix himself, if you had posted this in the related dwb thread.
//Reporting my own reply to see if site staff considers it suitable to merge your message with that one. Feel free to delete my own afterwards.
\(o_X)/
'Cause I wanna be an Archy - An Archy in the UK // Sex Pistols
Offline
Merging with the dwb thread...
Offline
I think there is a problem with webkit. A site that didn't use to use google ajax is now crashing in dwb and luakit.
I may have to CONSOLE you about your usage of ridiculously easy graphical interfaces...
Look ma, no mouse.
Offline
I am wondering, those fixes that were available in the git version, would it be possible to include them in the community version too despite the drop in maintainance?
If there are actually fixes available that is...
I know one could simply switch from the community build to the preferred AUR one but some user presumably, including me, would still like to take advantage of the community build instead of the AUR one.
\(o_X)/
'Cause I wanna be an Archy - An Archy in the UK // Sex Pistols
Offline
You can post to the arch-general ML and ask if the maintainer wants to package the last -git version.
https://lists.archlinux.org//listinfo/arch-general/
Offline
@karol
Thank you for your suggestion.
I have nevertheless chosen to take advantage of the forum mail feature in order to contact portix.
\(o_X)/
'Cause I wanna be an Archy - An Archy in the UK // Sex Pistols
Offline