Re: 2 Problems - Enable GNOME & tiny windows
Michele Barbiero <[email protected]>
| Newsgroups | gmane.compw.window-managers.windowmaker.user |
|---|---|
| Organization | Privato |
| Message-ID | <[email protected]> |
On Sun, 15 May 2005 23:22:39 +1000 Ken McLennan <[email protected]> wrote: [Cut] > Has any one noted this before? Is there a way to stop it > happening? I never had it happen in earler versions of WM, but I > hesitate to blame anything other than my current settings for the > situation. I don't remember if I have encountered the same problem, but try this patch. I have found it in Debian repositories: http://lists.debian.org/debian-devel-changes/2005/01/msg00328.html -- « Invento ergo sum » [G]reedy[F]ly aka Shuren @ irc.azzurra.org Powered by Slackware Linux Linux User #283140 GPG Public Key http://xoomer.virgilio.it/greedyfly/michele.asc _______________________________________________ INFO: https://windowmaker.org/lists/listinfo/wm-user ARCHIVE: https://windowmaker.org/lists/archive/wm-user/ FAQ: http://windowmaker.org/faq.html
50_net_wm_name.diff
(application/octet-stream, 769 B)
Index: src/wmspec.c
===================================================================
RCS file: /cvsroot/wm/src/wmspec.c,v
retrieving revision 1.11
diff -u -r1.11 wmspec.c
--- src/wmspec.c 31 Oct 2004 00:57:25 -0000 1.11
+++ src/wmspec.c 31 Dec 2004 16:10:48 -0000
@@ -236,6 +236,7 @@
setSupportedHints(WScreen *scr)
{
Atom atom[atomNr];
+ char * my_name = "Window Maker";
int i = 0;
/* set supported hints list */
@@ -308,6 +309,9 @@
XChangeProperty(dpy, scr->info_window, net_supporting_wm_check, XA_WINDOW,
32, PropModeReplace, (unsigned char*)&scr->info_window, 1);
+
+ XChangeProperty(dpy, scr->info_window, net_wm_name, utf8_string,
+ 8, PropModeReplace, my_name, strlen(my_name));
}