mirror of
https://github.com/gryf/wmaker.git
synced 2025-12-19 04:20:27 +01:00
wmaker: Consistent configuration options.
The default configuration options are given in two places in the source code: - src/default.c - WindowMaker/Defaults/WindowMaker.in The defaults are initially set in the former, but are then overwritten by the latter. Ideally, the default options in these two locations should coincide. However, there are currently several issues. - Many of the options are missing from WindowMaker/Defaults/WindowMaker.in - Many of the options have conflicting defaults between the two locations. - A number of options given in WindowMaker/Defaults/WindowMaker.in no longer exist. In this patch, we bring the defaults in the two locations in line with one another. We have given preference to the defaults in W/D/WindowMaker, as these are the one users have been used to. Some of the paths in IconPath and PixmapPath have been removed. In particular, the various system pixmap paths (/usr/include/X11/pixmaps, /usr/share/pixmaps, and /usr/local/share/pixmaps) have been removed in favor of PIXMAPDIR, which is specified by the user at build. Also, /usr/share/icons has been removed from IconPath. The root of this directory will contain very few icons, as the icons themselves are located in subdirectories corresponding to XDG icon themes. We add a comment to src/defaults.c to remind future developers who add or remove options to change the default values in both locations. We also take the opportunity to remove the unused DEF_INFO_TEXT_FONT macro.
This commit is contained in:
committed by
Carlos R. Mafra
parent
8fba9945e0
commit
3140c09240
@@ -12,7 +12,8 @@ WMWindowAttributes: $(srcdir)/WMWindowAttributes.in
|
|||||||
chmod 644 WMWindowAttributes
|
chmod 644 WMWindowAttributes
|
||||||
|
|
||||||
WindowMaker: $(srcdir)/WindowMaker.in
|
WindowMaker: $(srcdir)/WindowMaker.in
|
||||||
$(AM_V_GEN)sed -e "s:#pkgdatadir#:$(pkgdatadir):" $(srcdir)/WindowMaker.in \
|
$(AM_V_GEN)sed -e "s:#pkgdatadir#:$(pkgdatadir):" \
|
||||||
|
-e "s:#pixmapdir#:$(pixmapdir):" $(srcdir)/WindowMaker.in \
|
||||||
> WindowMaker ; \
|
> WindowMaker ; \
|
||||||
chmod 644 WindowMaker
|
chmod 644 WindowMaker
|
||||||
|
|
||||||
|
|||||||
@@ -1,139 +1,251 @@
|
|||||||
{
|
{
|
||||||
SmoothWorkspaceBack = NO;
|
ColormapSize = 4;
|
||||||
PopupSwitchMenu = NO;
|
DisableDithering = NO;
|
||||||
MenuStyle = normal;
|
IconSize = 64;
|
||||||
DisableMiniwindows = NO;
|
ModifierKey = Mod1;
|
||||||
DisableWorkspacePager = NO;
|
FocusMode = manual;
|
||||||
OpenTransientOnOwnerWorkspace = NO;
|
NewStyle = new;
|
||||||
EdgeResistance = 30;
|
DisableDock = NO;
|
||||||
WorkspaceBorderSize = 0;
|
DisableClip = NO;
|
||||||
WorkspaceBorder = None;
|
DisableDrawers = NO;
|
||||||
IconificationStyle = Zoom;
|
ClipMergedInDock = NO;
|
||||||
IconPath = (
|
DisableMiniwindows = NO;
|
||||||
"~/GNUstep/Library/Icons",
|
EnableWorkspacePager = NO;
|
||||||
"#pkgdatadir#/Icons",
|
IconPosition = blh;
|
||||||
"#pkgdatadir#/Pixmaps",
|
IconificationStyle = Zoom;
|
||||||
"/usr/include/X11/pixmaps",
|
DisableWSMouseActions = NO;
|
||||||
"~/GNUstep/Library/WindowMaker/Pixmaps",
|
MouseLeftButtonAction = SelectWindows;
|
||||||
"~/GNUstep/Library/WindowMaker/CachedPixmaps",
|
MouseMiddleButtonAction = OpenWindowListMenu;
|
||||||
"/usr/share/icons",
|
MouseRightButtonAction = OpenApplicationsMenu;
|
||||||
"/usr/local/share/pixmaps",
|
MouseBackwardButtonAction = None;
|
||||||
"/usr/share/pixmaps"
|
MouseForwardButtonAction = None;
|
||||||
);
|
MouseWheelAction = None;
|
||||||
PixmapPath = (
|
MouseWheelTiltAction = None;
|
||||||
"~/GNUstep/Library/WindowMaker/Pixmaps",
|
PixmapPath = (
|
||||||
"~/GNUstep/Library/WindowMaker/Backgrounds",
|
"~/GNUstep/Library/WindowMaker/Pixmaps",
|
||||||
"~/GNUstep/Library/WindowMaker/CachedPixmaps",
|
"~/GNUstep/Library/WindowMaker/Backgrounds",
|
||||||
"#pkgdatadir#/Pixmaps",
|
"~/GNUstep/Library/WindowMaker/CachedPixmaps",
|
||||||
"#pkgdatadir#/Backgrounds",
|
"~/pixmaps",
|
||||||
"/usr/include/X11/pixmaps",
|
"#pkgdatadir#/Pixmaps",
|
||||||
"/usr/local/share/pixmaps",
|
"#pkgdatadir#/Backgrounds",
|
||||||
"/usr/share/pixmaps"
|
"#pixmapdir#"
|
||||||
);
|
);
|
||||||
WindowTitleBalloons = YES;
|
IconPath = (
|
||||||
IconSize = 64;
|
"~/GNUstep/Library/Icons",
|
||||||
FocusMode = manual;
|
"~/GNUstep/Library/WindowMaker/Pixmaps",
|
||||||
DisableWSMouseActions = NO;
|
"~/GNUstep/Library/WindowMaker/CachedPixmaps",
|
||||||
MouseLeftButtonAction = SelectWindows;
|
"~/pixmaps",
|
||||||
MouseMiddleButtonAction = OpenWindowListMenu;
|
"#pkgdatadir#/Icons",
|
||||||
MouseRightButtonAction = OpenApplicationsMenu;
|
"#pkgdatadir#/Pixmaps",
|
||||||
MouseWheelAction = None;
|
"#pixmapdir#"
|
||||||
ColormapSize = 4;
|
);
|
||||||
DisableDithering = NO;
|
ColormapMode = auto;
|
||||||
ModifierKey = Mod1;
|
AutoFocus = YES;
|
||||||
NewStyle = "new";
|
RaiseDelay = 0;
|
||||||
DisableDock = NO;
|
CirculateRaise = NO;
|
||||||
DisableClip = NO;
|
Superfluous = YES;
|
||||||
DisableDrawers = NO;
|
AdvanceToNewWorkspace = NO;
|
||||||
Superfluous = YES;
|
CycleWorkspaces = NO;
|
||||||
StickyIcons = NO;
|
WorkspaceNameDisplayPosition = center;
|
||||||
SaveSessionOnExit = NO;
|
WorkspaceBorder = None;
|
||||||
ColormapMode = auto;
|
WorkspaceBorderSize = 0;
|
||||||
RaiseDelay = 0;
|
StickyIcons = NO;
|
||||||
AutoFocus = YES;
|
SaveSessionOnExit = NO;
|
||||||
WindowPlacement = auto;
|
WrapMenus = NO;
|
||||||
WindowPlaceOrigin = (64, 0);
|
ScrollableMenus = YES;
|
||||||
UseSaveUnders = NO;
|
MenuScrollSpeed = fast;
|
||||||
DisableSound = NO;
|
IconSlideSpeed = fast;
|
||||||
DisableAnimations = NO;
|
ShadeSpeed = fast;
|
||||||
DontLinkWorkspaces = YES;
|
BounceAppIconsWhenUrgent = YES;
|
||||||
AutoArrangeIcons = NO;
|
RaiseAppIconsWhenBouncing = NO;
|
||||||
AdvanceToNewWorkspace = NO;
|
DoNotMakeAppIconsBounce = NO;
|
||||||
CycleWorkspaces = NO;
|
DoubleClickTime = 250;
|
||||||
ResizeDisplay = center;
|
ClipAutoraiseDelay = 600;
|
||||||
MoveDisplay = floating;
|
ClipAutolowerDelay = 1000;
|
||||||
OpaqueMove = YES;
|
ClipAutoexpandDelay = 600;
|
||||||
IconPosition = "blh";
|
ClipAutocollapseDelay = 1000;
|
||||||
WrapMenus = NO;
|
WrapAppiconsInDock = YES;
|
||||||
ScrollableMenus = YES;
|
AlignSubmenus = NO;
|
||||||
MenuScrollSpeed = fast;
|
ViKeyMenus = NO;
|
||||||
IconSlideSpeed = fast;
|
OpenTransientOnOwnerWorkspace = NO;
|
||||||
ShadeSpeed = fast;
|
WindowPlacement = auto;
|
||||||
DoubleClickTime = 250;
|
IgnoreFocusClick = NO;
|
||||||
AlignSubmenus = NO;
|
UseSaveUnders = NO;
|
||||||
NoWindowOverIcons = NO;
|
OpaqueMove = YES;
|
||||||
IgnoreFocusClick = NO;
|
OpaqueResize = NO;
|
||||||
CloseKey = None;
|
OpaqueMoveResizeKeyboard = NO;
|
||||||
MaximizeKey = None;
|
DisableAnimations = NO;
|
||||||
VMaximizeKey = None;
|
DontLinkWorkspaces = YES;
|
||||||
RaiseLowerKey = None;
|
WindowSnapping = NO;
|
||||||
DontConfirmKill = NO;
|
SnapEdgeDetect = 1;
|
||||||
ShadeKey = None;
|
SnapCornerDetect = 10;
|
||||||
NextWorkspaceKey = "Mod1+Control+Right";
|
SnapToTopMaximizesFullscreen = NO;
|
||||||
PrevWorkspaceKey = "Mod1+Control+Left";
|
DragMaximizedWindow = Move;
|
||||||
RootMenuKey = F12;
|
MoveHalfMaximizedWindowsBetweenScreens = NO;
|
||||||
WindowListKey = F11;
|
AlternativeHalfMaximized = NO;
|
||||||
WindowMenuKey = "Control+Escape";
|
PointerWithHalfMaxWindows = NO;
|
||||||
RaiseKey = "Mod1+Up";
|
HighlightActiveApp = YES;
|
||||||
LowerKey = "Mod1+Down";
|
AutoArrangeIcons = NO;
|
||||||
FocusNextKey = "Mod1+Tab";
|
NoWindowOverDock = NO;
|
||||||
FocusPrevKey = "Mod1+Shift+Tab";
|
NoWindowOverIcons = NO;
|
||||||
Workspace1Key = "Mod1+1";
|
WindowPlaceOrigin = (64, 0);
|
||||||
Workspace2Key = "Mod1+2";
|
ResizeDisplay = center;
|
||||||
Workspace3Key = "Mod1+3";
|
MoveDisplay = floating;
|
||||||
Workspace4Key = "Mod1+4";
|
DontConfirmKill = NO;
|
||||||
Workspace5Key = "Mod1+5";
|
WindowTitleBalloons = YES;
|
||||||
Workspace6Key = "Mod1+6";
|
MiniwindowTitleBalloons = NO;
|
||||||
Workspace7Key = "Mod1+7";
|
MiniwindowPreviewBalloons = NO;
|
||||||
Workspace8Key = "Mod1+8";
|
AppIconBalloons = NO;
|
||||||
Workspace9Key = "Mod1+9";
|
HelpBalloons = NO;
|
||||||
Workspace10Key = "Mod1+0";
|
EdgeResistance = 30;
|
||||||
HideKey = "Mod1+H";
|
ResizeIncrement = 0;
|
||||||
SelectKey = None;
|
Attraction = NO;
|
||||||
MiniaturizeKey = "Mod1+M";
|
DisableBlinking = NO;
|
||||||
NextWorkspaceLayerKey = None;
|
SingleClickLaunch = NO;
|
||||||
PrevWorkspaceLayerKey = None;
|
StrictWindozeCycle = YES;
|
||||||
ConstrainWindowSize = NO;
|
SwitchPanelOnlyOpen = NO;
|
||||||
DockRaiseLowerKey = None;
|
MiniPreviewSize = 128;
|
||||||
ClipRaiseLowerKey = None;
|
IgnoreGtkHints = NO;
|
||||||
TitleJustify = center;
|
MenuStyle = normal;
|
||||||
WindowTitleFont = "Sans:bold:pixelsize=12";
|
WidgetColor = (solid, gray);
|
||||||
MenuTitleFont = "Sans:bold:pixelsize=12";
|
WorkspaceSpecificBack = ();
|
||||||
MenuTextFont = "Sans:pixelsize=12";
|
WorkspaceBack = (solid, "rgb:50/50/75");
|
||||||
IconTitleFont = "Sans:pixelsize=9";
|
SmoothWorkspaceBack = NO;
|
||||||
ClipTitleFont = "Sans:bold:pixelsize=10";
|
IconBack = (dgradient, "rgb:a6/a6/b6", "rgb:51/55/61");
|
||||||
LargeDisplayFont = "Sans:pixelsize=24";
|
TitleJustify = center;
|
||||||
HighlightColor = white;
|
WindowTitleFont = "Sans:bold:pixelsize=12";
|
||||||
HighlightTextColor = black;
|
WindowTitleExtendSpace = 0;
|
||||||
ClipTitleColor = black;
|
WindowTitleMinHeight = 0;
|
||||||
CClipTitleColor = "rgb:61/61/61";
|
WindowTitleMaxHeight = 0x7fffffff;
|
||||||
FTitleColor = white;
|
MenuTitleExtendSpace = 0;
|
||||||
PTitleColor = white;
|
MenuTitleMinHeight = 0;
|
||||||
UTitleColor = black;
|
MenuTitleMaxHeight = 0x7fffffff;
|
||||||
MenuTitleColor = white;
|
MenuTextExtendSpace = 0;
|
||||||
MenuTextColor = black;
|
MenuTitleFont = "Sans:bold:pixelsize=12";
|
||||||
MenuDisabledColor = gray50;
|
MenuTextFont = "Sans:pixelsize=12";
|
||||||
WorkspaceBack = (solid, "rgb:50/50/75");
|
IconTitleFont = "Sans:pixelsize=9";
|
||||||
MenuTextColor = black;
|
ClipTitleFont = "Sans:bold:pixelsize=10";
|
||||||
FTitleBack = (solid, black);
|
ShowClipTitle = YES;
|
||||||
UTitleBack = (solid, "rgb:aa/aa/aa");
|
LargeDisplayFont = "Sans:pixelsize=24";
|
||||||
ResizebarBack = (solid, "rgb:aa/aa/aa");
|
HighlightColor = white;
|
||||||
PTitleBack = (solid, gray40);
|
HighlightTextColor = black;
|
||||||
MenuTitleBack = (solid, black);
|
ClipTitleColor = black;
|
||||||
MenuTextBack = (solid, "rgb:aa/aa/aa");
|
CClipTitleColor = "rgb:61/61/61";
|
||||||
IconBack = (dgradient, "rgb:a6/a6/b6", "rgb:51/55/61");
|
FTitleColor = white;
|
||||||
ClipAutocollapseDelay = 1000;
|
PTitleColor = white;
|
||||||
ClipAutolowerDelay = 1000;
|
UTitleColor = black;
|
||||||
ClipAutoexpandDelay = 600;
|
FTitleBack = (solid, black);
|
||||||
ClipAutoraiseDelay = 600;
|
PTitleBack = (solid, gray40);
|
||||||
|
UTitleBack = (solid, "rgb:aa/aa/aa");
|
||||||
|
ResizebarBack = (solid, "rgb:aa/aa/aa");
|
||||||
|
MenuTitleColor = white;
|
||||||
|
MenuTextColor = black;
|
||||||
|
MenuDisabledColor = gray50;
|
||||||
|
MenuTitleBack = (solid, black);
|
||||||
|
MenuTextBack = (solid, "rgb:aa/aa/aa");
|
||||||
|
IconTitleColor = white;
|
||||||
|
IconTitleBack = black;
|
||||||
|
SwitchPanelImages = (swtile.png, swback.png, 30, 40);
|
||||||
|
ModifierKeyLabels = ("Shift+", "Control+", "Mod1+", "Mod2+", "Mod3+", "Mod4+", "Mod5+");
|
||||||
|
FrameBorderWidth = 1;
|
||||||
|
FrameBorderColor = black;
|
||||||
|
FrameFocusedBorderColor = black;
|
||||||
|
FrameSelectedBorderColor = white;
|
||||||
|
WorkspaceMapBack = (solid, black);
|
||||||
|
RootMenuKey = F12;
|
||||||
|
WindowListKey = F11;
|
||||||
|
WindowMenuKey = "Control+Escape";
|
||||||
|
DockRaiseLowerKey = None;
|
||||||
|
ClipRaiseLowerKey = None;
|
||||||
|
MiniaturizeKey = "Mod1+M";
|
||||||
|
MinimizeAllKey = None;
|
||||||
|
HideKey = "Mod1+H";
|
||||||
|
HideOthersKey = None;
|
||||||
|
MoveResizeKey = None;
|
||||||
|
CloseKey = None;
|
||||||
|
MaximizeKey = None;
|
||||||
|
VMaximizeKey = None;
|
||||||
|
HMaximizeKey = None;
|
||||||
|
LHMaximizeKey = None;
|
||||||
|
RHMaximizeKey = None;
|
||||||
|
THMaximizeKey = None;
|
||||||
|
BHMaximizeKey = None;
|
||||||
|
LTCMaximizeKey = None;
|
||||||
|
RTCMaximizeKey = None;
|
||||||
|
LBCMaximizeKey = None;
|
||||||
|
RBCMaximizeKey = None;
|
||||||
|
MaximusKey = None;
|
||||||
|
KeepOnTopKey = None;
|
||||||
|
KeepAtBottomKey = None;
|
||||||
|
OmnipresentKey = None;
|
||||||
|
RaiseKey = "Mod1+Up";
|
||||||
|
LowerKey = "Mod1+Down";
|
||||||
|
RaiseLowerKey = None;
|
||||||
|
ShadeKey = None;
|
||||||
|
SelectKey = None;
|
||||||
|
WorkspaceMapKey = None;
|
||||||
|
FocusNextKey = "Mod1+Tab";
|
||||||
|
FocusPrevKey = "Mod1+Shift+Tab";
|
||||||
|
GroupNextKey = None;
|
||||||
|
GroupPrevKey = None;
|
||||||
|
NextWorkspaceKey = "Mod1+Control+Right";
|
||||||
|
PrevWorkspaceKey = "Mod1+Control+Left";
|
||||||
|
LastWorkspaceKey = None;
|
||||||
|
NextWorkspaceLayerKey = None;
|
||||||
|
PrevWorkspaceLayerKey = None;
|
||||||
|
Workspace1Key = "Mod1+1";
|
||||||
|
Workspace2Key = "Mod1+2";
|
||||||
|
Workspace3Key = "Mod1+3";
|
||||||
|
Workspace4Key = "Mod1+4";
|
||||||
|
Workspace5Key = "Mod1+5";
|
||||||
|
Workspace6Key = "Mod1+6";
|
||||||
|
Workspace7Key = "Mod1+7";
|
||||||
|
Workspace8Key = "Mod1+8";
|
||||||
|
Workspace9Key = "Mod1+9";
|
||||||
|
Workspace10Key = "Mod1+0";
|
||||||
|
MoveToWorkspace1Key = None;
|
||||||
|
MoveToWorkspace2Key = None;
|
||||||
|
MoveToWorkspace3Key = None;
|
||||||
|
MoveToWorkspace4Key = None;
|
||||||
|
MoveToWorkspace5Key = None;
|
||||||
|
MoveToWorkspace6Key = None;
|
||||||
|
MoveToWorkspace7Key = None;
|
||||||
|
MoveToWorkspace8Key = None;
|
||||||
|
MoveToWorkspace9Key = None;
|
||||||
|
MoveToWorkspace10Key = None;
|
||||||
|
MoveToNextWorkspaceKey = None;
|
||||||
|
MoveToPrevWorkspaceKey = None;
|
||||||
|
MoveToLastWorkspaceKey = None;
|
||||||
|
MoveToNextWorkspaceLayerKey = None;
|
||||||
|
MoveToPrevWorkspaceLayerKey = None;
|
||||||
|
WindowShortcut1Key = None;
|
||||||
|
WindowShortcut2Key = None;
|
||||||
|
WindowShortcut3Key = None;
|
||||||
|
WindowShortcut4Key = None;
|
||||||
|
WindowShortcut5Key = None;
|
||||||
|
WindowShortcut6Key = None;
|
||||||
|
WindowShortcut7Key = None;
|
||||||
|
WindowShortcut8Key = None;
|
||||||
|
WindowShortcut9Key = None;
|
||||||
|
WindowShortcut10Key = None;
|
||||||
|
WindowRelaunchKey = None;
|
||||||
|
ScreenSwitchKey = None;
|
||||||
|
RunKey = None;
|
||||||
|
NormalCursor = (builtin, left_ptr);
|
||||||
|
ArrowCursor = (builtin, top_left_arrow);
|
||||||
|
MoveCursor = (builtin, fleur);
|
||||||
|
ResizeCursor = (builtin, sizing);
|
||||||
|
TopLeftResizeCursor = (builtin, top_left_corner);
|
||||||
|
TopRightResizeCursor = (builtin, top_right_corner);
|
||||||
|
BottomLeftResizeCursor = (builtin, bottom_left_corner);
|
||||||
|
BottomRightResizeCursor = (builtin, bottom_right_corner);
|
||||||
|
VerticalResizeCursor = (builtin, sb_v_double_arrow);
|
||||||
|
HorizontalResizeCursor = (builtin, sb_h_double_arrow);
|
||||||
|
WaitCursor = (builtin, watch);
|
||||||
|
QuestionCursor = (builtin, question_arrow);
|
||||||
|
TextCursor = (builtin, xterm);
|
||||||
|
SelectCursor = (builtin, cross);
|
||||||
|
DialogHistoryLines = 500;
|
||||||
|
CycleActiveHeadOnly = NO;
|
||||||
|
CycleIgnoreMinimized = NO;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -313,8 +313,10 @@ static WOptionEnumeration seDragMaximizedWindow[] = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* ALL entries in the tables bellow, NEED to have a default value
|
* ALL entries in the tables below NEED to have a default value
|
||||||
* defined, and this value needs to be correct.
|
* defined, and this value needs to be correct.
|
||||||
|
*
|
||||||
|
* Also add the default key/value pair to WindowMaker/Defaults/WindowMaker.in
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* these options will only affect the window manager on startup
|
/* these options will only affect the window manager on startup
|
||||||
@@ -383,13 +385,13 @@ WDefaultEntry optionList[] = {
|
|||||||
&wPreferences.icon_path, getPathList, NULL, NULL, NULL},
|
&wPreferences.icon_path, getPathList, NULL, NULL, NULL},
|
||||||
{"ColormapMode", "auto", seColormapModes,
|
{"ColormapMode", "auto", seColormapModes,
|
||||||
&wPreferences.colormap_mode, getEnum, NULL, NULL, NULL},
|
&wPreferences.colormap_mode, getEnum, NULL, NULL, NULL},
|
||||||
{"AutoFocus", "NO", NULL,
|
{"AutoFocus", "YES", NULL,
|
||||||
&wPreferences.auto_focus, getBool, NULL, NULL, NULL},
|
&wPreferences.auto_focus, getBool, NULL, NULL, NULL},
|
||||||
{"RaiseDelay", "0", NULL,
|
{"RaiseDelay", "0", NULL,
|
||||||
&wPreferences.raise_delay, getInt, NULL, NULL, NULL},
|
&wPreferences.raise_delay, getInt, NULL, NULL, NULL},
|
||||||
{"CirculateRaise", "NO", NULL,
|
{"CirculateRaise", "NO", NULL,
|
||||||
&wPreferences.circ_raise, getBool, NULL, NULL, NULL},
|
&wPreferences.circ_raise, getBool, NULL, NULL, NULL},
|
||||||
{"Superfluous", "NO", NULL,
|
{"Superfluous", "YES", NULL,
|
||||||
&wPreferences.superfluous, getBool, NULL, NULL, NULL},
|
&wPreferences.superfluous, getBool, NULL, NULL, NULL},
|
||||||
{"AdvanceToNewWorkspace", "NO", NULL,
|
{"AdvanceToNewWorkspace", "NO", NULL,
|
||||||
&wPreferences.ws_advance, getBool, NULL, NULL, NULL},
|
&wPreferences.ws_advance, getBool, NULL, NULL, NULL},
|
||||||
@@ -407,13 +409,13 @@ WDefaultEntry optionList[] = {
|
|||||||
&wPreferences.save_session_on_exit, getBool, NULL, NULL, NULL},
|
&wPreferences.save_session_on_exit, getBool, NULL, NULL, NULL},
|
||||||
{"WrapMenus", "NO", NULL,
|
{"WrapMenus", "NO", NULL,
|
||||||
&wPreferences.wrap_menus, getBool, NULL, NULL, NULL},
|
&wPreferences.wrap_menus, getBool, NULL, NULL, NULL},
|
||||||
{"ScrollableMenus", "NO", NULL,
|
{"ScrollableMenus", "YES", NULL,
|
||||||
&wPreferences.scrollable_menus, getBool, NULL, NULL, NULL},
|
&wPreferences.scrollable_menus, getBool, NULL, NULL, NULL},
|
||||||
{"MenuScrollSpeed", "medium", seSpeeds,
|
{"MenuScrollSpeed", "fast", seSpeeds,
|
||||||
&wPreferences.menu_scroll_speed, getEnum, NULL, NULL, NULL},
|
&wPreferences.menu_scroll_speed, getEnum, NULL, NULL, NULL},
|
||||||
{"IconSlideSpeed", "medium", seSpeeds,
|
{"IconSlideSpeed", "fast", seSpeeds,
|
||||||
&wPreferences.icon_slide_speed, getEnum, NULL, NULL, NULL},
|
&wPreferences.icon_slide_speed, getEnum, NULL, NULL, NULL},
|
||||||
{"ShadeSpeed", "medium", seSpeeds,
|
{"ShadeSpeed", "fast", seSpeeds,
|
||||||
&wPreferences.shade_speed, getEnum, NULL, NULL, NULL},
|
&wPreferences.shade_speed, getEnum, NULL, NULL, NULL},
|
||||||
{"BounceAppIconsWhenUrgent", "YES", NULL,
|
{"BounceAppIconsWhenUrgent", "YES", NULL,
|
||||||
&wPreferences.bounce_appicons_when_urgent, getBool, NULL, NULL, NULL},
|
&wPreferences.bounce_appicons_when_urgent, getBool, NULL, NULL, NULL},
|
||||||
@@ -445,7 +447,7 @@ WDefaultEntry optionList[] = {
|
|||||||
&wPreferences.ignore_focus_click, getBool, NULL, NULL, NULL},
|
&wPreferences.ignore_focus_click, getBool, NULL, NULL, NULL},
|
||||||
{"UseSaveUnders", "NO", NULL,
|
{"UseSaveUnders", "NO", NULL,
|
||||||
&wPreferences.use_saveunders, getBool, NULL, NULL, NULL},
|
&wPreferences.use_saveunders, getBool, NULL, NULL, NULL},
|
||||||
{"OpaqueMove", "NO", NULL,
|
{"OpaqueMove", "YES", NULL,
|
||||||
&wPreferences.opaque_move, getBool, NULL, NULL, NULL},
|
&wPreferences.opaque_move, getBool, NULL, NULL, NULL},
|
||||||
{"OpaqueResize", "NO", NULL,
|
{"OpaqueResize", "NO", NULL,
|
||||||
&wPreferences.opaque_resize, getBool, NULL, NULL, NULL},
|
&wPreferences.opaque_resize, getBool, NULL, NULL, NULL},
|
||||||
@@ -453,7 +455,7 @@ WDefaultEntry optionList[] = {
|
|||||||
&wPreferences.opaque_move_resize_keyboard, getBool, NULL, NULL, NULL},
|
&wPreferences.opaque_move_resize_keyboard, getBool, NULL, NULL, NULL},
|
||||||
{"DisableAnimations", "NO", NULL,
|
{"DisableAnimations", "NO", NULL,
|
||||||
&wPreferences.no_animations, getBool, NULL, NULL, NULL},
|
&wPreferences.no_animations, getBool, NULL, NULL, NULL},
|
||||||
{"DontLinkWorkspaces", "NO", NULL,
|
{"DontLinkWorkspaces", "YES", NULL,
|
||||||
&wPreferences.no_autowrap, getBool, NULL, NULL, NULL},
|
&wPreferences.no_autowrap, getBool, NULL, NULL, NULL},
|
||||||
{"WindowSnapping", "NO", NULL,
|
{"WindowSnapping", "NO", NULL,
|
||||||
&wPreferences.window_snapping, getBool, NULL, NULL, NULL},
|
&wPreferences.window_snapping, getBool, NULL, NULL, NULL},
|
||||||
@@ -479,15 +481,15 @@ WDefaultEntry optionList[] = {
|
|||||||
&wPreferences.no_window_over_dock, getBool, updateUsableArea, NULL, NULL},
|
&wPreferences.no_window_over_dock, getBool, updateUsableArea, NULL, NULL},
|
||||||
{"NoWindowOverIcons", "NO", NULL,
|
{"NoWindowOverIcons", "NO", NULL,
|
||||||
&wPreferences.no_window_over_icons, getBool, updateUsableArea, NULL, NULL},
|
&wPreferences.no_window_over_icons, getBool, updateUsableArea, NULL, NULL},
|
||||||
{"WindowPlaceOrigin", "(0, 0)", NULL,
|
{"WindowPlaceOrigin", "(64, 0)", NULL,
|
||||||
&wPreferences.window_place_origin, getCoord, NULL, NULL, NULL},
|
&wPreferences.window_place_origin, getCoord, NULL, NULL, NULL},
|
||||||
{"ResizeDisplay", "corner", seGeomDisplays,
|
{"ResizeDisplay", "center", seGeomDisplays,
|
||||||
&wPreferences.size_display, getEnum, NULL, NULL, NULL},
|
&wPreferences.size_display, getEnum, NULL, NULL, NULL},
|
||||||
{"MoveDisplay", "corner", seGeomDisplays,
|
{"MoveDisplay", "floating", seGeomDisplays,
|
||||||
&wPreferences.move_display, getEnum, NULL, NULL, NULL},
|
&wPreferences.move_display, getEnum, NULL, NULL, NULL},
|
||||||
{"DontConfirmKill", "NO", NULL,
|
{"DontConfirmKill", "NO", NULL,
|
||||||
&wPreferences.dont_confirm_kill, getBool, NULL, NULL, NULL},
|
&wPreferences.dont_confirm_kill, getBool, NULL, NULL, NULL},
|
||||||
{"WindowTitleBalloons", "NO", NULL,
|
{"WindowTitleBalloons", "YES", NULL,
|
||||||
&wPreferences.window_balloon, getBool, NULL, NULL, NULL},
|
&wPreferences.window_balloon, getBool, NULL, NULL, NULL},
|
||||||
{"MiniwindowTitleBalloons", "NO", NULL,
|
{"MiniwindowTitleBalloons", "NO", NULL,
|
||||||
&wPreferences.miniwin_title_balloon, getBool, NULL, NULL, NULL},
|
&wPreferences.miniwin_title_balloon, getBool, NULL, NULL, NULL},
|
||||||
@@ -527,11 +529,11 @@ WDefaultEntry optionList[] = {
|
|||||||
/* WorkspaceBack must come after WorkspaceSpecificBack or
|
/* WorkspaceBack must come after WorkspaceSpecificBack or
|
||||||
* WorkspaceBack won't know WorkspaceSpecificBack was also
|
* WorkspaceBack won't know WorkspaceSpecificBack was also
|
||||||
* specified and 2 copies of wmsetbg will be launched */
|
* specified and 2 copies of wmsetbg will be launched */
|
||||||
{"WorkspaceBack", "(solid, black)", NULL,
|
{"WorkspaceBack", "(solid, \"rgb:50/50/75\")", NULL,
|
||||||
NULL, getWSBackground, setWorkspaceBack, NULL, NULL},
|
NULL, getWSBackground, setWorkspaceBack, NULL, NULL},
|
||||||
{"SmoothWorkspaceBack", "NO", NULL,
|
{"SmoothWorkspaceBack", "NO", NULL,
|
||||||
NULL, getBool, NULL, NULL, NULL},
|
NULL, getBool, NULL, NULL, NULL},
|
||||||
{"IconBack", "(solid, gray)", NULL,
|
{"IconBack", "(dgradient, \"rgb:a6/a6/b6\", \"rgb:51/55/61\")", NULL,
|
||||||
NULL, getTexture, setIconTile, NULL, NULL},
|
NULL, getTexture, setIconTile, NULL, NULL},
|
||||||
{"TitleJustify", "center", seJustifications,
|
{"TitleJustify", "center", seJustifications,
|
||||||
&wPreferences.title_justification, getEnum, setJustify, NULL, NULL},
|
&wPreferences.title_justification, getEnum, setJustify, NULL, NULL},
|
||||||
@@ -569,7 +571,7 @@ WDefaultEntry optionList[] = {
|
|||||||
NULL, getColor, setHightlightText, NULL, NULL},
|
NULL, getColor, setHightlightText, NULL, NULL},
|
||||||
{"ClipTitleColor", "black", (void *)CLIP_NORMAL,
|
{"ClipTitleColor", "black", (void *)CLIP_NORMAL,
|
||||||
NULL, getColor, setClipTitleColor, NULL, NULL},
|
NULL, getColor, setClipTitleColor, NULL, NULL},
|
||||||
{"CClipTitleColor", "\"#454045\"", (void *)CLIP_COLLAPSED,
|
{"CClipTitleColor", "\"rgb:61/61/61\"", (void *)CLIP_COLLAPSED,
|
||||||
NULL, getColor, setClipTitleColor, NULL, NULL},
|
NULL, getColor, setClipTitleColor, NULL, NULL},
|
||||||
{"FTitleColor", "white", (void *)WS_FOCUSED,
|
{"FTitleColor", "white", (void *)WS_FOCUSED,
|
||||||
NULL, getColor, setWTitleColor, NULL, NULL},
|
NULL, getColor, setWTitleColor, NULL, NULL},
|
||||||
@@ -579,21 +581,21 @@ WDefaultEntry optionList[] = {
|
|||||||
NULL, getColor, setWTitleColor, NULL, NULL},
|
NULL, getColor, setWTitleColor, NULL, NULL},
|
||||||
{"FTitleBack", "(solid, black)", NULL,
|
{"FTitleBack", "(solid, black)", NULL,
|
||||||
NULL, getTexture, setFTitleBack, NULL, NULL},
|
NULL, getTexture, setFTitleBack, NULL, NULL},
|
||||||
{"PTitleBack", "(solid, \"#616161\")", NULL,
|
{"PTitleBack", "(solid, gray40)", NULL,
|
||||||
NULL, getTexture, setPTitleBack, NULL, NULL},
|
NULL, getTexture, setPTitleBack, NULL, NULL},
|
||||||
{"UTitleBack", "(solid, gray)", NULL,
|
{"UTitleBack", "(solid, \"rgb:aa/aa/aa\")", NULL,
|
||||||
NULL, getTexture, setUTitleBack, NULL, NULL},
|
NULL, getTexture, setUTitleBack, NULL, NULL},
|
||||||
{"ResizebarBack", "(solid, gray)", NULL,
|
{"ResizebarBack", "(solid, \"rgb:aa/aa/aa\")", NULL,
|
||||||
NULL, getTexture, setResizebarBack, NULL, NULL},
|
NULL, getTexture, setResizebarBack, NULL, NULL},
|
||||||
{"MenuTitleColor", "white", NULL,
|
{"MenuTitleColor", "white", NULL,
|
||||||
NULL, getColor, setMenuTitleColor, NULL, NULL},
|
NULL, getColor, setMenuTitleColor, NULL, NULL},
|
||||||
{"MenuTextColor", "black", NULL,
|
{"MenuTextColor", "black", NULL,
|
||||||
NULL, getColor, setMenuTextColor, NULL, NULL},
|
NULL, getColor, setMenuTextColor, NULL, NULL},
|
||||||
{"MenuDisabledColor", "\"#616161\"", NULL,
|
{"MenuDisabledColor", "gray50", NULL,
|
||||||
NULL, getColor, setMenuDisabledColor, NULL, NULL},
|
NULL, getColor, setMenuDisabledColor, NULL, NULL},
|
||||||
{"MenuTitleBack", "(solid, black)", NULL,
|
{"MenuTitleBack", "(solid, black)", NULL,
|
||||||
NULL, getTexture, setMenuTitleBack, NULL, NULL},
|
NULL, getTexture, setMenuTitleBack, NULL, NULL},
|
||||||
{"MenuTextBack", "(solid, gray)", NULL,
|
{"MenuTextBack", "(solid, \"rgb:aa/aa/aa\")", NULL,
|
||||||
NULL, getTexture, setMenuTextBack, NULL, NULL},
|
NULL, getTexture, setMenuTextBack, NULL, NULL},
|
||||||
{"IconTitleColor", "white", NULL,
|
{"IconTitleColor", "white", NULL,
|
||||||
NULL, getColor, setIconTitleColor, NULL, NULL},
|
NULL, getColor, setIconTitleColor, NULL, NULL},
|
||||||
@@ -616,21 +618,21 @@ WDefaultEntry optionList[] = {
|
|||||||
|
|
||||||
/* keybindings */
|
/* keybindings */
|
||||||
|
|
||||||
{"RootMenuKey", "None", (void *)WKBD_ROOTMENU,
|
{"RootMenuKey", "F12", (void *)WKBD_ROOTMENU,
|
||||||
NULL, getKeybind, setKeyGrab, NULL, NULL},
|
NULL, getKeybind, setKeyGrab, NULL, NULL},
|
||||||
{"WindowListKey", "None", (void *)WKBD_WINDOWLIST,
|
{"WindowListKey", "F11", (void *)WKBD_WINDOWLIST,
|
||||||
NULL, getKeybind, setKeyGrab, NULL, NULL},
|
NULL, getKeybind, setKeyGrab, NULL, NULL},
|
||||||
{"WindowMenuKey", "None", (void *)WKBD_WINDOWMENU,
|
{"WindowMenuKey", "Control+Escape", (void *)WKBD_WINDOWMENU,
|
||||||
NULL, getKeybind, setKeyGrab, NULL, NULL},
|
NULL, getKeybind, setKeyGrab, NULL, NULL},
|
||||||
{"DockRaiseLowerKey", "None", (void*)WKBD_DOCKRAISELOWER,
|
{"DockRaiseLowerKey", "None", (void*)WKBD_DOCKRAISELOWER,
|
||||||
NULL, getKeybind, setKeyGrab, NULL, NULL},
|
NULL, getKeybind, setKeyGrab, NULL, NULL},
|
||||||
{"ClipRaiseLowerKey", "None", (void *)WKBD_CLIPRAISELOWER,
|
{"ClipRaiseLowerKey", "None", (void *)WKBD_CLIPRAISELOWER,
|
||||||
NULL, getKeybind, setKeyGrab, NULL, NULL},
|
NULL, getKeybind, setKeyGrab, NULL, NULL},
|
||||||
{"MiniaturizeKey", "None", (void *)WKBD_MINIATURIZE,
|
{"MiniaturizeKey", "Mod1+M", (void *)WKBD_MINIATURIZE,
|
||||||
NULL, getKeybind, setKeyGrab, NULL, NULL},
|
NULL, getKeybind, setKeyGrab, NULL, NULL},
|
||||||
{"MinimizeAllKey", "None", (void *)WKBD_MINIMIZEALL,
|
{"MinimizeAllKey", "None", (void *)WKBD_MINIMIZEALL,
|
||||||
NULL, getKeybind, setKeyGrab, NULL, NULL },
|
NULL, getKeybind, setKeyGrab, NULL, NULL },
|
||||||
{"HideKey", "None", (void *)WKBD_HIDE,
|
{"HideKey", "Mod1+H", (void *)WKBD_HIDE,
|
||||||
NULL, getKeybind, setKeyGrab, NULL, NULL},
|
NULL, getKeybind, setKeyGrab, NULL, NULL},
|
||||||
{"HideOthersKey", "None", (void *)WKBD_HIDE_OTHERS,
|
{"HideOthersKey", "None", (void *)WKBD_HIDE_OTHERS,
|
||||||
NULL, getKeybind, setKeyGrab, NULL, NULL},
|
NULL, getKeybind, setKeyGrab, NULL, NULL},
|
||||||
@@ -668,9 +670,9 @@ WDefaultEntry optionList[] = {
|
|||||||
NULL, getKeybind, setKeyGrab, NULL, NULL},
|
NULL, getKeybind, setKeyGrab, NULL, NULL},
|
||||||
{"OmnipresentKey", "None", (void *)WKBD_OMNIPRESENT,
|
{"OmnipresentKey", "None", (void *)WKBD_OMNIPRESENT,
|
||||||
NULL, getKeybind, setKeyGrab, NULL, NULL},
|
NULL, getKeybind, setKeyGrab, NULL, NULL},
|
||||||
{"RaiseKey", "\"Meta+Up\"", (void *)WKBD_RAISE,
|
{"RaiseKey", "Mod1+Up", (void *)WKBD_RAISE,
|
||||||
NULL, getKeybind, setKeyGrab, NULL, NULL},
|
NULL, getKeybind, setKeyGrab, NULL, NULL},
|
||||||
{"LowerKey", "\"Meta+Down\"", (void *)WKBD_LOWER,
|
{"LowerKey", "Mod1+Down", (void *)WKBD_LOWER,
|
||||||
NULL, getKeybind, setKeyGrab, NULL, NULL},
|
NULL, getKeybind, setKeyGrab, NULL, NULL},
|
||||||
{"RaiseLowerKey", "None", (void *)WKBD_RAISELOWER,
|
{"RaiseLowerKey", "None", (void *)WKBD_RAISELOWER,
|
||||||
NULL, getKeybind, setKeyGrab, NULL, NULL},
|
NULL, getKeybind, setKeyGrab, NULL, NULL},
|
||||||
@@ -680,17 +682,17 @@ WDefaultEntry optionList[] = {
|
|||||||
NULL, getKeybind, setKeyGrab, NULL, NULL},
|
NULL, getKeybind, setKeyGrab, NULL, NULL},
|
||||||
{"WorkspaceMapKey", "None", (void *)WKBD_WORKSPACEMAP,
|
{"WorkspaceMapKey", "None", (void *)WKBD_WORKSPACEMAP,
|
||||||
NULL, getKeybind, setKeyGrab, NULL, NULL},
|
NULL, getKeybind, setKeyGrab, NULL, NULL},
|
||||||
{"FocusNextKey", "None", (void *)WKBD_FOCUSNEXT,
|
{"FocusNextKey", "Mod1+Tab", (void *)WKBD_FOCUSNEXT,
|
||||||
NULL, getKeybind, setKeyGrab, NULL, NULL},
|
NULL, getKeybind, setKeyGrab, NULL, NULL},
|
||||||
{"FocusPrevKey", "None", (void *)WKBD_FOCUSPREV,
|
{"FocusPrevKey", "Mod1+Shift+Tab", (void *)WKBD_FOCUSPREV,
|
||||||
NULL, getKeybind, setKeyGrab, NULL, NULL},
|
NULL, getKeybind, setKeyGrab, NULL, NULL},
|
||||||
{"GroupNextKey", "None", (void *)WKBD_GROUPNEXT,
|
{"GroupNextKey", "None", (void *)WKBD_GROUPNEXT,
|
||||||
NULL, getKeybind, setKeyGrab, NULL, NULL},
|
NULL, getKeybind, setKeyGrab, NULL, NULL},
|
||||||
{"GroupPrevKey", "None", (void *)WKBD_GROUPPREV,
|
{"GroupPrevKey", "None", (void *)WKBD_GROUPPREV,
|
||||||
NULL, getKeybind, setKeyGrab, NULL, NULL},
|
NULL, getKeybind, setKeyGrab, NULL, NULL},
|
||||||
{"NextWorkspaceKey", "None", (void *)WKBD_NEXTWORKSPACE,
|
{"NextWorkspaceKey", "Mod1+Control+Right", (void *)WKBD_NEXTWORKSPACE,
|
||||||
NULL, getKeybind, setKeyGrab, NULL, NULL},
|
NULL, getKeybind, setKeyGrab, NULL, NULL},
|
||||||
{"PrevWorkspaceKey", "None", (void *)WKBD_PREVWORKSPACE,
|
{"PrevWorkspaceKey", "Mod1+Control+Left", (void *)WKBD_PREVWORKSPACE,
|
||||||
NULL, getKeybind, setKeyGrab, NULL, NULL},
|
NULL, getKeybind, setKeyGrab, NULL, NULL},
|
||||||
{"LastWorkspaceKey", "None", (void *)WKBD_LASTWORKSPACE,
|
{"LastWorkspaceKey", "None", (void *)WKBD_LASTWORKSPACE,
|
||||||
NULL, getKeybind, setKeyGrab, NULL, NULL},
|
NULL, getKeybind, setKeyGrab, NULL, NULL},
|
||||||
@@ -698,25 +700,25 @@ WDefaultEntry optionList[] = {
|
|||||||
NULL, getKeybind, setKeyGrab, NULL, NULL},
|
NULL, getKeybind, setKeyGrab, NULL, NULL},
|
||||||
{"PrevWorkspaceLayerKey", "None", (void *)WKBD_PREVWSLAYER,
|
{"PrevWorkspaceLayerKey", "None", (void *)WKBD_PREVWSLAYER,
|
||||||
NULL, getKeybind, setKeyGrab, NULL, NULL},
|
NULL, getKeybind, setKeyGrab, NULL, NULL},
|
||||||
{"Workspace1Key", "None", (void *)WKBD_WORKSPACE1,
|
{"Workspace1Key", "Mod1+1", (void *)WKBD_WORKSPACE1,
|
||||||
NULL, getKeybind, setKeyGrab, NULL, NULL},
|
NULL, getKeybind, setKeyGrab, NULL, NULL},
|
||||||
{"Workspace2Key", "None", (void *)WKBD_WORKSPACE2,
|
{"Workspace2Key", "Mod1+2", (void *)WKBD_WORKSPACE2,
|
||||||
NULL, getKeybind, setKeyGrab, NULL, NULL},
|
NULL, getKeybind, setKeyGrab, NULL, NULL},
|
||||||
{"Workspace3Key", "None", (void *)WKBD_WORKSPACE3,
|
{"Workspace3Key", "Mod1+3", (void *)WKBD_WORKSPACE3,
|
||||||
NULL, getKeybind, setKeyGrab, NULL, NULL},
|
NULL, getKeybind, setKeyGrab, NULL, NULL},
|
||||||
{"Workspace4Key", "None", (void *)WKBD_WORKSPACE4,
|
{"Workspace4Key", "Mod1+4", (void *)WKBD_WORKSPACE4,
|
||||||
NULL, getKeybind, setKeyGrab, NULL, NULL},
|
NULL, getKeybind, setKeyGrab, NULL, NULL},
|
||||||
{"Workspace5Key", "None", (void *)WKBD_WORKSPACE5,
|
{"Workspace5Key", "Mod1+5", (void *)WKBD_WORKSPACE5,
|
||||||
NULL, getKeybind, setKeyGrab, NULL, NULL},
|
NULL, getKeybind, setKeyGrab, NULL, NULL},
|
||||||
{"Workspace6Key", "None", (void *)WKBD_WORKSPACE6,
|
{"Workspace6Key", "Mod1+6", (void *)WKBD_WORKSPACE6,
|
||||||
NULL, getKeybind, setKeyGrab, NULL, NULL},
|
NULL, getKeybind, setKeyGrab, NULL, NULL},
|
||||||
{"Workspace7Key", "None", (void *)WKBD_WORKSPACE7,
|
{"Workspace7Key", "Mod1+7", (void *)WKBD_WORKSPACE7,
|
||||||
NULL, getKeybind, setKeyGrab, NULL, NULL},
|
NULL, getKeybind, setKeyGrab, NULL, NULL},
|
||||||
{"Workspace8Key", "None", (void *)WKBD_WORKSPACE8,
|
{"Workspace8Key", "Mod1+8", (void *)WKBD_WORKSPACE8,
|
||||||
NULL, getKeybind, setKeyGrab, NULL, NULL},
|
NULL, getKeybind, setKeyGrab, NULL, NULL},
|
||||||
{"Workspace9Key", "None", (void *)WKBD_WORKSPACE9,
|
{"Workspace9Key", "Mod1+9", (void *)WKBD_WORKSPACE9,
|
||||||
NULL, getKeybind, setKeyGrab, NULL, NULL},
|
NULL, getKeybind, setKeyGrab, NULL, NULL},
|
||||||
{"Workspace10Key", "None", (void *)WKBD_WORKSPACE10,
|
{"Workspace10Key", "Mod1+0", (void *)WKBD_WORKSPACE10,
|
||||||
NULL, getKeybind, setKeyGrab, NULL, NULL},
|
NULL, getKeybind, setKeyGrab, NULL, NULL},
|
||||||
{"MoveToWorkspace1Key", "None", (void *)WKBD_MOVE_WORKSPACE1,
|
{"MoveToWorkspace1Key", "None", (void *)WKBD_MOVE_WORKSPACE1,
|
||||||
NULL, getKeybind, setKeyGrab, NULL, NULL},
|
NULL, getKeybind, setKeyGrab, NULL, NULL},
|
||||||
|
|||||||
@@ -136,7 +136,15 @@
|
|||||||
|
|
||||||
/* pixmap path */
|
/* pixmap path */
|
||||||
#define DEF_PIXMAP_PATHS \
|
#define DEF_PIXMAP_PATHS \
|
||||||
"(\"~/pixmaps\",\"~/GNUstep/Library/WindowMaker/Pixmaps\",\""PIXMAPDIR"\")"
|
"(" \
|
||||||
|
"\"~/GNUstep/Library/WindowMaker/Pixmaps\"," \
|
||||||
|
"\"~/GNUstep/Library/WindowMaker/Backgrounds\"," \
|
||||||
|
"\"~/GNUstep/Library/WindowMaker/CachedPixmaps\"," \
|
||||||
|
"\"~/pixmaps\"," \
|
||||||
|
"\""PKGDATADIR"/Pixmaps\"," \
|
||||||
|
"\""PKGDATADIR"/Backgrounds\"," \
|
||||||
|
"\""PIXMAPDIR"\"" \
|
||||||
|
")"
|
||||||
|
|
||||||
#ifdef USER_MENU
|
#ifdef USER_MENU
|
||||||
#define GLOBAL_USER_MENU_PATH PKGDATADIR"/UserMenus"
|
#define GLOBAL_USER_MENU_PATH PKGDATADIR"/UserMenus"
|
||||||
@@ -146,7 +154,15 @@
|
|||||||
|
|
||||||
/* icon path */
|
/* icon path */
|
||||||
#define DEF_ICON_PATHS \
|
#define DEF_ICON_PATHS \
|
||||||
"(\"~/pixmaps\",\"~/GNUstep/Library/Icons\",\"/usr/include/X11/pixmaps/\",\""PIXMAPDIR"\")"
|
"(" \
|
||||||
|
"\"~/GNUstep/Library/Icons\"," \
|
||||||
|
"\"~/GNUstep/Library/WindowMaker/Pixmaps\"," \
|
||||||
|
"\"~/GNUstep/Library/WindowMaker/CachedPixmaps\"," \
|
||||||
|
"\"~/pixmaps\"," \
|
||||||
|
"\""PKGDATADIR"/Icons\"," \
|
||||||
|
"\""PKGDATADIR"/Pixmaps\"," \
|
||||||
|
"\""PIXMAPDIR"\"" \
|
||||||
|
")"
|
||||||
|
|
||||||
/* window title to use for untitled windows */
|
/* window title to use for untitled windows */
|
||||||
#define DEF_WINDOW_TITLE "Untitled"
|
#define DEF_WINDOW_TITLE "Untitled"
|
||||||
@@ -155,13 +171,12 @@
|
|||||||
#define DEF_FRAME_COLOR "white"
|
#define DEF_FRAME_COLOR "white"
|
||||||
|
|
||||||
/* default fonts */
|
/* default fonts */
|
||||||
#define DEF_TITLE_FONT "\"sans-serif:bold:pixelsize=12\""
|
#define DEF_TITLE_FONT "\"Sans:bold:pixelsize=12\""
|
||||||
#define DEF_MENU_TITLE_FONT "\"sans-serif:bold:pixelsize=12\""
|
#define DEF_MENU_TITLE_FONT "\"Sans:bold:pixelsize=12\""
|
||||||
#define DEF_MENU_ENTRY_FONT "\"sans-serif:pixelsize=12\""
|
#define DEF_MENU_ENTRY_FONT "\"Sans:pixelsize=12\""
|
||||||
#define DEF_ICON_TITLE_FONT "\"sans-serif:pixelsize=9\""
|
#define DEF_ICON_TITLE_FONT "\"Sans:pixelsize=9\""
|
||||||
#define DEF_CLIP_TITLE_FONT "\"sans-serif:bold:pixelsize=10\""
|
#define DEF_CLIP_TITLE_FONT "\"Sans:bold:pixelsize=10\""
|
||||||
#define DEF_INFO_TEXT_FONT "\"sans-serif:pixelsize=12\""
|
#define DEF_WORKSPACE_NAME_FONT "\"Sans:pixelsize=24\""
|
||||||
#define DEF_WORKSPACE_NAME_FONT "\"sans-serif:pixelsize=24\""
|
|
||||||
|
|
||||||
/* line width of the move/resize frame */
|
/* line width of the move/resize frame */
|
||||||
#define DEF_FRAME_THICKNESS 1
|
#define DEF_FRAME_THICKNESS 1
|
||||||
|
|||||||
Reference in New Issue
Block a user