On Fri, 10 Sep 2010 at 20:51:05 +0400, Alexey I. Froloff wrote: > AllMinimizeKey - minimize all windows on current workspace.
This one is cool, but I had to apply the patch below on top of it to be able to use it efficiently. I suppose you were using $EDITOR to set the shortcut inside GNUstep/ directly? :-) >From 7ae63b415e04330799d2d57313276ad293454ae5 Mon Sep 17 00:00:00 2001 From: Carlos R. Mafra <[email protected]> Date: Sat, 11 Sep 2010 16:47:57 +0200 Subject: [PATCH] WPrefs: Add MinimizeAllKey shortcut configuration --- WPrefs.app/KeyboardShortcuts.c | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/WPrefs.app/KeyboardShortcuts.c b/WPrefs.app/KeyboardShortcuts.c index 0a8b9cf..13b8444 100644 --- a/WPrefs.app/KeyboardShortcuts.c +++ b/WPrefs.app/KeyboardShortcuts.c @@ -71,6 +71,7 @@ static char *keyOptions[] = { "HideKey", "HideOthersKey", "MiniaturizeKey", + "MinimizeAllKey", "CloseKey", "MaximizeKey", "VMaximizeKey", @@ -470,6 +471,7 @@ static void createPanel(Panel * p) WMAddListItem(panel->actLs, _("Hide active application")); WMAddListItem(panel->actLs, _("Hide other applications")); WMAddListItem(panel->actLs, _("Miniaturize active window")); + WMAddListItem(panel->actLs, _("Miniaturize all windows")); WMAddListItem(panel->actLs, _("Close active window")); WMAddListItem(panel->actLs, _("Maximize active window")); WMAddListItem(panel->actLs, _("Maximize active window vertically")); -- 1.7.2.2.119.gf9c33 -- To unsubscribe, send mail to [email protected].
