config.def.h (477B)
1 /* define crosshairs used for various operations */ 2 char *xhair[] = { 3 [XHAIR_MOVE] = "hand1", 4 [XHAIR_SIZE] = "lr_angle", 5 [XHAIR_TELE] = "tcross", 6 [XHAIR_DFLT] = "left_ptr", 7 }; 8 9 /* key that must be pressed to register mouse events */ 10 int modifier = XCB_MOD_MASK_4; 11 12 /* window borders and titlebar */ 13 int border = 0; 14 int inner_border = 0; 15 uint32_t border_color = 0x666666; 16 uint32_t border_color_active = 0xdeadca7; 17 18 /* move/resize step amound in pixels */ 19 int move_step = 8;