Re: [dev] [surf] shell script to do bookmarks, history, and other things

2010-03-31 Thread pancake
Conceptually looks nice, but the script uses some bashisms and linuxsms and depends on urlencode.sh which is not distributed with the script. it also has a race condition in the history file on multiuser environments and it is possible to steal the history information because of the cp hack: (wh

Re: [dev] Re: [dmenu] subwindow patch

2010-03-31 Thread Anselm R Garbe
On 31 March 2010 00:54, Connor Lane Smith wrote: > On 30 March 2010 23:35, Connor Lane Smith wrote: >> I thought it would be nice for certain programs (like surf) to spawn >> dmenu within its own borders. It turns out this is actually very >> simple. The attached patch uses the argument '-w'. Hop

Re: [dev] [dmenu] kpress bugs & patch

2010-03-31 Thread Anselm R Garbe
On 31 March 2010 22:13, Connor Lane Smith wrote: > Hey again, > > I've fixed some more bugs: >  - backspacing at end of text repeats final character instead of wiping. >  - ^W only works relative to end of text, not cursor. > > The other changes just are just general improvements, and shave off 7

Re: [dev] [9base] x86_64 rc segmentation fault

2010-03-31 Thread Anselm R Garbe
On 31 March 2010 21:00, Yoshi Rokuko wrote: > i'm used to 32bit, but now i also control one 64bit box so i installed > 9base from tip and then also 9base-4. > the config.mk defaults are fine for me i guess, but i also tried > OBJTYPE = 386. > > if i start rc it segfaults on commands like ls or ech

Re: [dev] [dmenu] kpress bugs & patch

2010-03-31 Thread Connor Lane Smith
On 31 March 2010 21:13, Connor Lane Smith wrote: > I also personally think tip should incorporate my subwindow patch > (other window), since it's only 4 lines and the standard dmenu > behaviour is one of the most common complaints I've heard wrt surf. I meant to say, "other thread". cls

Re: [dev] [dmenu] kpress bugs & patch

2010-03-31 Thread Connor Lane Smith
Hey again, I've fixed some more bugs: - backspacing at end of text repeats final character instead of wiping. - ^W only works relative to end of text, not cursor. The other changes just are just general improvements, and shave off 7 lines. I also rebound the Esc alias from ^( to ^C, as it did

[dev] [9base] x86_64 rc segmentation fault

2010-03-31 Thread Yoshi Rokuko
i'm used to 32bit, but now i also control one 64bit box so i installed 9base from tip and then also 9base-4. the config.mk defaults are fine for me i guess, but i also tried OBJTYPE = 386. if i start rc it segfaults on commands like ls or echo (also with 9base ls) is this known? i use the official

[dev] [surf] shell script to do bookmarks, history, and other things

2010-03-31 Thread Peter John Hartman
Hi Folks, So, I've cobbled together the attached shell script to do most of what I want to do with surf, including history, smart prefixes, and bookmarks. The upshot is that one doesn't need the history patch and the searchengines patch. I'd appreciate comments on this, esp.\ with respect to how

Re: [dev] Re: [dmenu] subwindow patch

2010-03-31 Thread julien steinhauser
On Wed, Mar 31, 2010 at 12:36:04PM +0100, Sean Whitton wrote: > > This is nice. What would be even nicer is if dmenu stole mouse/kb > control only for the window in question, so you could switch to another > window/tag and leave it open while looking up part of a url or > something. > > S > > -

Re: [dev] Re: [dmenu] subwindow patch

2010-03-31 Thread Sean Whitton
Hi, On Tue, Mar 30, 2010 at 11:54:15PM +, Connor Lane Smith wrote: > On 30 March 2010 23:35, Connor Lane Smith wrote: > > I thought it would be nice for certain programs (like surf) to spawn > > dmenu within its own borders. It turns out this is actually very > > simple. The attached patch us