> On 2006-02-09, Matyas Selmeci <[EMAIL PROTECTED]> wrote:
> > Is there any way I can make it so that a new window appears in the
> > background (e.g. in a new tab that's unselected in a WIonWS)? I want
> > to be able to do other things when Firefox is starting up, but I don't
> > want it popping up and stealing my keyboard focus suddenly.
>
> Check the documentation for winprops, and particularly the 'target' and
> 'oneshot' winprops.
>
> --
> Tuomo
>
Ah, thanks! This works great, and also seems to display an activity
notification once the new window has spawned.
I added used the following code:
function openhere(cwin)
defwinprop{
target=WRegion.name(cwin),
name=".*",
oneshot=true
}
end
and added a keybinding to the WMPlex section.
- Matyas Selmeci