1
0
mirror of https://github.com/gryf/wmaker.git synced 2025-12-29 18:02:34 +01:00

WPrefs: add workspace pager configuration

This patch is adding a checkbox in the expert zone to disable
completely the workspace pager and add an entry in keyshortcut
preference to set the shortcut used to open the pager with the
action "Open workspace pager".

The default frame background can be configured by setting an optional
variable "WorkspaceMapBack" from WindowMaker conf file as in:

WorkspaceMapBack = (tpixmap, "/tmp/testme.png", gray20);

or

WorkspaceMapBack = (solid, "#2c2482");
This commit is contained in:
David Maciejak
2014-12-04 13:30:27 +07:00
committed by Carlos R. Mafra
parent c10469264d
commit ea8f18aff1
2 changed files with 4 additions and 0 deletions

View File

@@ -43,6 +43,9 @@ static const struct {
{ N_("Disable miniwindows (icons for minimized windows). For use with KDE/GNOME."), { N_("Disable miniwindows (icons for minimized windows). For use with KDE/GNOME."),
/* default: */ False, OPTION_WMAKER, "DisableMiniwindows" }, /* default: */ False, OPTION_WMAKER, "DisableMiniwindows" },
{ N_("Disable workspace pager"),
/* default: */ False, OPTION_WMAKER, "DisableWorkspacePager" },
{ N_("Do not set non-WindowMaker specific parameters (do not use xset)."), { N_("Do not set non-WindowMaker specific parameters (do not use xset)."),
/* default: */ False, OPTION_USERDEF, "NoXSetStuff" }, /* default: */ False, OPTION_USERDEF, "NoXSetStuff" },

View File

@@ -102,6 +102,7 @@ static const struct {
{ "GroupPrevKey", N_("Focus previous group window") }, { "GroupPrevKey", N_("Focus previous group window") },
/* Workspace Related */ /* Workspace Related */
{ "WorkspaceMapKey", N_("Open workspace pager") },
{ "NextWorkspaceKey", N_("Switch to next workspace") }, { "NextWorkspaceKey", N_("Switch to next workspace") },
{ "PrevWorkspaceKey", N_("Switch to previous workspace") }, { "PrevWorkspaceKey", N_("Switch to previous workspace") },
{ "LastWorkspaceKey", N_("Switch to last used workspace") }, { "LastWorkspaceKey", N_("Switch to last used workspace") },