Yes, it's compiz. I used to have it too.
I installed Beryl and it's all fine now!
Hi,
I'm using fvwm2 windows manager in Fedora 7 and
I had the same problem. I think the problem is that
not all the windows managers support the XUrgencyHint
or handle it the same manner.
I found an example program at
http://modeemi.fi/~tuomov/ion/misc/urgent.cWhen it runs on a iconified xterm (ex: sleep 10 ; ./urgent )
the xterm deiconify and the mouse pointer goes on it, as when a message comes in amsn.
So my crude workaround, as I'm used to download and compile the source code
from the SVN repository, was to comment out the code in
utils/linux/linflash/flash.c (line 194)
compile and install.
int setUrgencyHint(Display *display, Window window, int flash) {
XWMHints *hints;
#if 0
hints = XGetWMHints(display, window);
if (hints != NULL) {
if (flash)
hints->flags |= XUrgencyHint;
else
hints->flags &= ~XUrgencyHint;
XSetWMHints(display, window, hints);
XFree(hints);
return 1;
}
#endif
return 0;
}
That restores
for me the old amsn beaviour when messages arrive:
- open chat window minimized with flickering icontitle.
Bye!