Hey,
On 17/04/2010, Anselm R Garbe wrote:
> Feel free to apply that patch to lsw. I think it's a great
> generalisation of lsw.
Have done.
Thanks,
cls
Hey Connor,
On 17 April 2010 02:20, Connor Lane Smith wrote:
>> Included is a patch to add functionality to see a screen-like list of
>> windows from tabbed using dmenu to tabbed-0.2.
>
> I've been thinking about this problem since you posted your patch, and
> I only just got to a solution. It's
lsw seems to print the clients' names in reverse chronological order
by access time. So if you change it to something like "lsw | tac
| dmenu -l 5" the top should always be the current tab, and so on
down.
On another note, to make it able to uniquely identify a window, rather
than using a name, h
Although a notion of order would be nice, not sure how to make lsw retain that.
--
Samuel Baldwin - logik.li
2010/4/16 Connor Lane Smith :
> I've been thinking about this problem since you posted your patch, and
> I only just got to a solution. It's a bit of a round-about one, but it
> seems a little cleaner.
Oh this is way cleaner, thanks!
Any ideas about how to remove these errors? I can defeat 1 and
Hey,
> Included is a patch to add functionality to see a screen-like list of
> windows from tabbed using dmenu to tabbed-0.2.
I've been thinking about this problem since you posted your patch, and
I only just got to a solution. It's a bit of a round-about one, but it
seems a little cleaner.
Basi
2010/4/16 anonymous :
> Instead of popen() you can use fcntl(or dup, or dup2) like inetd or
> netcat -e. Then you can both read and write.
I had some issues with dup/dup2, but it may just be due to my own
stupidity. Thanks for the suggestion.
--
Samuel Baldwin - logik.li
On Thu, Apr 15, 2010 at 11:31:28PM -0400, Samuel Baldwin wrote:
> Currently it uses popen() to open a pipe to dmenu, which then sets an
> xproperty, which on update switches to the window matching that title.
> As you can imagine this is a little hackish and I'm not particularly
> proud of this, bu
Included is a patch to add functionality to see a screen-like list of
windows from tabbed using dmenu to tabbed-0.2.
Currently it uses popen() to open a pipe to dmenu, which then sets an
xproperty, which on update switches to the window matching that title.
As you can imagine this is a little hack