GNOME Bugzilla – Bug 61988
"Show Desktop" or "Minimize All Windows" functionality
Last modified: 2015-03-24 13:00:35 UTC
I swear I saw this in KDE, but I can't find the Gnome equivalent. Is there a nice, simple "Minimize Windoze" (I mean, "Minimize Windows") applet for Gnome? I'm using Ximian-Gnome (maybe that's the problem)...
You mean like "Show desktop" or "Minimize all apps"?
Exactly.
Greg Merchan has written some code to do this. It's at: http://www.phys.lsu.edu/students/merchan/GNOME/ScuttleButt2.tar.gz You also need http://www.phys.lsu.edu/students/merchan/GNOME/scuttlebutt.gnorba I needed to make a minor change to get it to work for me, RedHat 7.2 with Ximian (gnome-core-1.4.0.4-ximian.6): --- Makefile.orig Tue Nov 20 14:11:52 2001 +++ Makefile Tue Nov 20 14:17:09 2001 @@ -4,7 +4,7 @@ gcc -o scuttlebutt scuttlebutt.o gwmh.o gstc.o `gnome-config --libs applets gnomeui gtk` scuttlebutt.o: scuttlebutt.c - gcc -c scuttlebutt.c `gnome-config --cflags applets gnomeui gtk` -I. + gcc -c scuttlebutt.c `gnome-config --cflags applets gnomeui gtk` -I/usr/include/orbit-1.0 -I. gwmh.o: gwmh.c gwmh.h gstc.h gcc -c gwmh.c `gnome-config --cflags gnomeui gtk` -I.
Does this code look like it could be included?
Adding relevant keywords. You can filter on the phrase 'luis doing GNOME2 work' to catch all instances of this so that you can ignore them.
moving gnome-panel-2 specific bugs to gnome-panel product
This feature exists in the menu applet, which we will hopefully switch to post GNOME 2.0.
*** Bug 75118 has been marked as a duplicate of this bug. ***
2002-08-05 Mark McLoughlin <mark@skynet.ie> * foobar-widget.c: (append_actions_menu): if the wm supports it, add a 'Show Desktop' item. #61988. * xstuff.[ch]: (panel_atom_get): remove display arg. We always use the default display - no multidisplay support here. (xstuff_net_wm_supports): impl. (xstuff_show_desktop): send _NET_SHOW_DESKTOP ClientMessage.
how do you know if the window manager is supposed to support it? Does metacity support this - should there be a "Show desktop" option in the Actions menu with metacity?