* Tuomo Valkonen <[EMAIL PROTECTED]> [04/05/22 01:22]:
> > 2. How to switch off tab for all windows with given name/class
> > automatically?
> Such things don't fit the multiple-clients-per-frame model.
Cannot it be done just by letting me add a hook to 'create window' event?
> > 3. How to change ION behaviour so that I don't have to click on window tab
> > to make it fully visible, and instead it's enough to click at any place
> > in the window area?
>
> Eh? You mean raise a window on a WFloatWS? Try Mod1+click.
Right, but it won't work if I've got an IonWS in a frame inside FloatWS:
Mod1+click won't do anything inside IonWS.
Plus originally I wanted to make it possible without modifiers.
> > 5. If I run a program via F3 settiong environment variables doesn't work.
> > For example this one doesn't work: LANG=en_US gkrellm. How do I run a
> > program with modified environment?
>
> In a released version, you can't, but I just changed this in SVN.
> Apparently at least the version of bash that I currently have (and
> that's good enough for me) can automatically 'exec' the last command
> in a sequence of commands to -c so that we don't leave useless shells
> laying around consuming resources even if Ion doesn't add 'exec' prefix
> to every command executed.
Weird, this code works fine on my system:
--cut
#include <stdlib.h>
int main(int argc, char *argv[])
{
system("LANG=en_US xclock");
}
--end cut
>
> > 6. How to change the name of a workspace?
>
> Mod1+F3 querylib.query_renameworkspace(_)
>
Thank you very much for your answers,
-kostja