[dev] dmenu patch to return all matching items (for a new dmenu-powered music player interface)

2010-11-10 Thread Dan Brown
Hello and thanks everyone. As part of a project to create a simple and fast music player interface, I patched dmenu to allow it to return all matching items instead of just the one at the cursor. dmenu is the browsing interface; and there is another mode of operation that takes keywords as hints f

Re: [dev] [sta.li] Minimalist Live Distro

2010-11-10 Thread Connor Lane Smith
Hey, On 10 November 2010 08:19, Szabolcs Nagy wrote: > eg a js interpreter on its own is not very useful > as most js code is about interacting with a browser: > handling browser events, manipulating site related > states, drawing stuff on screen, issuing browser commands There are a lot of appl

Re: [dev] [sta.li] Minimalist Live Distro

2010-11-10 Thread Bjartur Thorlacius
On 11/10/10, Szabolcs Nagy wrote: > * Bjartur Thorlacius [2010-11-10 00:03:05 +]: >> WebApp VM is a DHTML virtual machine, or a JavaScript VM that >> implements DOM, CSS, HTML, XML and related W3C and WHATWG >> technologies. > > your webapp wm is a full blown web browser > i don't think there

[dev] [dwm] small cleanup

2010-11-10 Thread Hiltjo Posthuma
Hi, This is a small cleanup, apply it if you like :) Changes: - Remove font_extents variable, its unused, reported by femto on IRC (using clang-analyzer). - Allocate new client by using calloc, not using a static (zero'd) Client struct in the manage function. - Simplify the xerrorsta

[dev] [dwm] small cleanup

2010-11-10 Thread Hiltjo Posthuma
Hi, This is a small cleanup, apply it if you like :) Changes: - Remove font_extents variable, its unused, reported by femto on IRC (using clang-analyzer). - Allocate new client by using calloc, not using a static (zero'd) Client struct in the manage function. - Simplify the xerrorsta

Re: [dev] [sta.li] Minimalist Live Distro

2010-11-10 Thread Szabolcs Nagy
* Bjartur Thorlacius [2010-11-10 00:03:05 +]: > WebApp VM is a DHTML virtual machine, or a JavaScript VM that > implements DOM, CSS, HTML, XML and related W3C and WHATWG > technologies. your webapp wm is a full blown web browser i don't think there is a way around that eg a js interpreter on