Re: Different desktops per tag

2011-10-06 Thread David Palacio
On Thu, Oct 06, 2011 at 10:11:16AM +0200, Uli Schlachter wrote: What I propose is: mytaglist[s] = awful.widget.taglist(s, function(t, args) local clients = t:clients() local empty = true for k, c in pairs(clients) do if c.type ~= desktop then empty = false end end

Re: Different desktops per tag

2011-10-06 Thread Uli Schlachter
On 06.10.2011 21:15, David Palacio wrote: On Thu, Oct 06, 2011 at 10:11:16AM +0200, Uli Schlachter wrote: What I propose is: mytaglist[s] = awful.widget.taglist(s, function(t, args) local clients = t:clients() local empty = true for k, c in pairs(clients) do if c.type ~= desktop

Re: Different desktops per tag

2011-10-05 Thread David Palacio
On Tue, Oct 04, 2011 at 09:52:20PM +0200, Uli Schlachter wrote: Oh, taglist. I guess that should be solved via a taglist filter then. E.g. instead of filter.noempty, it would need an own function which skips clients with skip_taskbar... Or so. I do not understand. Do you mean an alternative

Re: Different desktops per tag

2011-10-04 Thread Uli Schlachter
On 04.10.2011 07:32, David Palacio wrote: On Sun, Oct 02, 2011 at 02:11:18PM -0500, David Palacio wrote: I am using Awesome as the window manager for my KDE desktop. I would like to set different desktops per Awesome tag. I use client:tags({tags}) to set on which tags should the desktop be

Re: Different desktops per tag

2011-10-04 Thread David Palacio
On Tue, Oct 04, 2011 at 10:19:34AM +0200, Uli Schlachter wrote: On 04.10.2011 07:32, David Palacio wrote: On Sun, Oct 02, 2011 at 02:11:18PM -0500, David Palacio wrote: I am using Awesome as the window manager for my KDE desktop. I would like to set different desktops per Awesome tag. I

Re: Different desktops per tag

2011-10-04 Thread Uli Schlachter
On 04.10.2011 17:59, David Palacio wrote: On Tue, Oct 04, 2011 at 10:19:34AM +0200, Uli Schlachter wrote: On 04.10.2011 07:32, David Palacio wrote: On Sun, Oct 02, 2011 at 02:11:18PM -0500, David Palacio wrote: I am using Awesome as the window manager for my KDE desktop. I would like to set

Re: Different desktops per tag

2011-10-04 Thread David Palacio
On Tue, Oct 04, 2011 at 08:28:39PM +0200, Uli Schlachter wrote: Pushed, although I'm still not convinced. Wouldn't something like this solve the problem in a cleaner way? diff --git a/awesomerc.lua.in b/awesomerc.lua.in index fcfb333..ef8cc96 100644 --- a/awesomerc.lua.in +++

Re: Different desktops per tag

2011-10-04 Thread Uli Schlachter
On 04.10.2011 21:24, David Palacio wrote: On Tue, Oct 04, 2011 at 08:28:39PM +0200, Uli Schlachter wrote: Pushed, although I'm still not convinced. Wouldn't something like this solve the problem in a cleaner way? diff --git a/awesomerc.lua.in b/awesomerc.lua.in index fcfb333..ef8cc96 100644

Re: Different desktops per tag

2011-10-03 Thread David Palacio
On Sun, Oct 02, 2011 at 02:11:18PM -0500, David Palacio wrote: Hi, I am using Awesome as the window manager for my KDE desktop. I would like to set different desktops per Awesome tag. I use client:tags({tags}) to set on which tags should the desktop be visible. But that does not work as

Different desktops per tag

2011-10-02 Thread David Palacio
Hi, I am using Awesome as the window manager for my KDE desktop. I would like to set different desktops per Awesome tag. I use client:tags({tags}) to set on which tags should the desktop be visible. But that does not work as expected as the desktops are still visible in all tags. Is there a way

Re: Different desktops per tag

2011-10-02 Thread David Palacio
On Sun, Oct 02, 2011 at 08:34:11PM -0400, Eliot Frost wrote: Hello, On 2 October 2011 15:11, David Palacio dpala...@orbitalibre.org wrote: Hi, I am using Awesome as the window manager for my KDE desktop. I would like to set different desktops per Awesome tag. I use client:tags({tags})