1
0
mirror of https://github.com/gryf/wmaker.git synced 2025-12-19 04:20:27 +01:00
This commit is contained in:
kojima
2004-10-25 00:42:25 +00:00
parent f274afdd1d
commit 12b8b8ba58
3 changed files with 12 additions and 12 deletions

View File

@@ -105,12 +105,12 @@
ConstrainWindowSize = NO; ConstrainWindowSize = NO;
ClipRaiseLowerKey = None; ClipRaiseLowerKey = None;
TitleJustify = center; TitleJustify = center;
WindowTitleFont = "Trebuchet MS,Luxi Sans:bold:pixelsize=12"; WindowTitleFont = "Trebuchet MS,Luxi Sans:bold:pixelsize=11";
MenuTitleFont = "Trebuchet MS,Luxi Sans:bold:pixelsize=12"; MenuTitleFont = "Trebuchet MS,Luxi Sans:bold:pixelsize=11";
MenuTextFont = "Trebuchet MS,Luxi Sans:pixelsize=12"; MenuTextFont = "Trebuchet MS,Luxi Sans:pixelsize=11";
IconTitleFont = "Arial,Luxi Sans:pixelsize=9"; IconTitleFont = "Arial,Luxi Sans:pixelsize=8";
ClipTitleFont = "Verdana:bold:pixelsize=10"; ClipTitleFont = "Verdana:bold:pixelsize=10";
DisplayFont = "Trebuchet MS,Luxi Sans:pixelsize=12"; DisplayFont = "Trebuchet MS,Luxi Sans:pixelsize=11";
LargeDisplayFont = "Trebuchet MS,Luxi Sans:pixelsize=24"; LargeDisplayFont = "Trebuchet MS,Luxi Sans:pixelsize=24";
HighlightColor = white; HighlightColor = white;
HighlightTextColor = black; HighlightTextColor = black;

View File

@@ -460,7 +460,7 @@ WSwitchPanel *wInitSwitchPanel(WScreen *scr, WWindow *curwin, int workspace)
panel->tileTmp= RCreateImage(ICON_TILE_SIZE, ICON_TILE_SIZE, 1); panel->tileTmp= RCreateImage(ICON_TILE_SIZE, ICON_TILE_SIZE, 1);
panel->tile= getTile(panel); panel->tile= getTile(panel);
if (panel->tile) { if (panel->tile && wPreferences.swbackImage[8]) {
panel->bg= createBackImage(scr, width+2*BORDER_SPACE, height+2*BORDER_SPACE); panel->bg= createBackImage(scr, width+2*BORDER_SPACE, height+2*BORDER_SPACE);
} }
if (!panel->tileTmp || !panel->tile) { if (!panel->tileTmp || !panel->tile) {
@@ -524,7 +524,7 @@ WSwitchPanel *wInitSwitchPanel(WScreen *scr, WWindow *curwin, int workspace)
if (panel->bg) { if (panel->bg) {
Pixmap pixmap, mask; Pixmap pixmap, mask;
RConvertImageMask(scr->rcontext, panel->bg, &pixmap, &mask, 254); RConvertImageMask(scr->rcontext, panel->bg, &pixmap, &mask, 250);
XSetWindowBackgroundPixmap(dpy, WMWidgetXID(panel->win), pixmap); XSetWindowBackgroundPixmap(dpy, WMWidgetXID(panel->win), pixmap);

View File

@@ -269,12 +269,12 @@
#define DEF_FRAME_COLOR "white" #define DEF_FRAME_COLOR "white"
#define DEF_TITLE_FONT "\"Trebuchet MS,Luxi Sans:bold:pixelsize=12\"" #define DEF_TITLE_FONT "\"Trebuchet MS,Luxi Sans:bold:pixelsize=11\""
#define DEF_MENU_TITLE_FONT "\"Trebuchet MS,Luxi Sans:bold:pixelsize=12\"" #define DEF_MENU_TITLE_FONT "\"Trebuchet MS,Luxi Sans:bold:pixelsize=11\""
#define DEF_MENU_ENTRY_FONT "\"Trebuchet MS,Luxi Sans:pixelsize=12\"" #define DEF_MENU_ENTRY_FONT "\"Trebuchet MS,Luxi Sans:pixelsize=11\""
#define DEF_ICON_TITLE_FONT "\"Arial,Luxi Sans:pixelsize=9\"" #define DEF_ICON_TITLE_FONT "\"Arial,Luxi Sans:pixelsize=8\""
#define DEF_CLIP_TITLE_FONT "\"Verdana:bold:pixelsize=10\"" #define DEF_CLIP_TITLE_FONT "\"Verdana:bold:pixelsize=10\""
#define DEF_INFO_TEXT_FONT "\"Trebuchet MS,Luxi Sans:pixelsize=12\"" #define DEF_INFO_TEXT_FONT "\"Trebuchet MS,Luxi Sans:pixelsize=11\""
#define DEF_WORKSPACE_NAME_FONT "\"Trebuchet MS,Luxi Sans:pixelsize=24\"" #define DEF_WORKSPACE_NAME_FONT "\"Trebuchet MS,Luxi Sans:pixelsize=24\""