? Makefile Index: src/Screen.cc =================================================================== RCS file: /cvsroot/blackboxwm/blackbox/src/Screen.cc,v retrieving revision 1.308 diff -p -u -r1.308 Screen.cc --- src/Screen.cc 6 Dec 2005 08:53:17 -0000 1.308 +++ src/Screen.cc 4 Feb 2006 20:38:20 -0000 @@ -1895,9 +1895,9 @@ void BScreen::buttonPressEvent(const XBu */ _blackbox->setActiveScreen(this); - if (event->button == 2) { + if (event->button == 3) { _workspacemenu->popup(event->x_root, event->y_root); - } else if (event->button == 3) { + } else if (event->button == 2) { _blackbox->checkMenu(); _rootmenu->popup(event->x_root, event->y_root); } else if (event->button == 4 && Index: src/ScreenResource.cc =================================================================== RCS file: /cvsroot/blackboxwm/blackbox/src/ScreenResource.cc,v retrieving revision 1.13 diff -p -u -r1.13 ScreenResource.cc --- src/ScreenResource.cc 13 Apr 2005 05:54:08 -0000 1.13 +++ src/ScreenResource.cc 4 Feb 2006 20:38:21 -0000 @@ -37,8 +37,8 @@ static const int iconify_width = 9; static const int iconify_height = 9; static const unsigned char iconify_bits[] = - { 0x00, 0x00, 0x82, 0x00, 0xc6, 0x00, 0x6c, 0x00, 0x38, - 0x00, 0x10, 0x00, 0x00, 0x00, 0xff, 0x01, 0xff, 0x01 }; + { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xff, 0x01, 0xff, 0x01 }; static const int maximize_width = 9; static const int maximize_height = 9; @@ -144,7 +144,7 @@ void ScreenResource::load(bt::Resource& sprintf(name_lookup, "session.screen%u.toolbar.widthPercent", screen); sprintf(class_lookup, "Session.screen%u.Toolbar.WidthPercent", screen); - _toolbarOptions.width_percent = res.read(name_lookup, class_lookup, 66); + _toolbarOptions.width_percent = res.read(name_lookup, class_lookup, 100); sprintf(name_lookup, "session.screen%u.toolbar.placement", screen); sprintf(class_lookup, "Session.screen%u.Toolbar.Placement", screen); @@ -399,7 +399,7 @@ void ScreenResource::loadStyle(BScreen* ((std::max(_windowStyle.focus.title.borderWidth(), _windowStyle.unfocus.title.borderWidth()) + _windowStyle.title_margin) * 2); - _windowStyle.grip_width = (_windowStyle.button_width * 2); + _windowStyle.grip_width = (_windowStyle.button_width * 1.4); _windowStyle.handle_height += (std::max(_windowStyle.focus.handle.borderWidth(), _windowStyle.unfocus.handle.borderWidth()) * 2); Index: src/main.cc =================================================================== RCS file: /cvsroot/blackboxwm/blackbox/src/main.cc,v retrieving revision 1.31 diff -p -u -r1.31 main.cc --- src/main.cc 3 Jan 2005 09:42:57 -0000 1.31 +++ src/main.cc 4 Feb 2006 20:38:21 -0000 @@ -127,7 +127,7 @@ int main(int argc, char **argv) { #endif // __EMX__ if (rc_file.empty()) - rc_file = "~/.blackboxrc"; + rc_file = "~/.config/blackbox/blackboxrc"; rc_file = bt::expandTilde(rc_file); #if defined(PRINT_SIZES)