Click to See Complete Forum and Search --> : PWM


jon787
11-04-2001, 12:39 AM
The config file says:
winprop "class.instance" {
frame <frame_id>
}

How do I figure out what the class name for a program is?

I tried using mozilla.* to get Mozilla to open itself in the same frame but it didn't work.

carwyn
11-04-2001, 10:12 AM
type

xprop

in a terminal window. Your pointer will change into a cross hair. Click on the window of the application you need the class for.

xprop will return some information about the app window. One of the items listed should be the WM_CLASS(String) which I think is what you need.

jon787
11-04-2001, 11:41 AM
Thanks.