Hi,

Am 18.05.2015 um 15:45 schrieb Thomas Baruchel:
[...]
> I would like to go a little further; can I expect to:
>     * remove the title of the window from the taskbar?

Set its skip_taskbar property to true (can be done with awful.rules)

>     * make the window unmovable (my tiling mode is
>       awful.layout.suit.tile ; I can change it of course,
>       but what I like is to have the clock on the left "master window" (?)
>       and have my xterm sharing the empty space on the right on
>       this workspace);

Just make it floating? That wouldn't make the window completely unmovable, but
should be close...?

Also, I'd suggest calling awful.client.dockable.set(c, true) on the client. Hm,
or rather:

function (c)
  awful.client.dockable.set(c, true)
  c:struts({ left = c.width })
  c:geometry({ x = 0 })
end

The above reserves some space at the left edge of the screen for the client and
moves it "in that direction".

>     * make the window unfocusable; when I change the focus with the keyboard
>       by cycling next/previous; is there a way to "jump" over this window in
>       order to remove it from the cycle?

No idea if the following matches xxxterm. Adapt the check for the class,
instance or whatever:

do
  local original_filter = awful.client.focus.filter
  awful.client.focus.filter = function(c)
    return c.class ~= "xxxterm" and original_filter(c)
  end
done

Cheers,
Uli

-- 
"Because I'm in pain," he says. "That's the only way I get your attention."
He picks up the box. "Don't worry, Katniss. It'll pass."
He leaves before I can answer.

--
To unsubscribe, send mail to [email protected].

Reply via email to