tChange border color types to match XCB pixel color type - glazier - window management experiments
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) Submodules
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit c6e64b8528cc5f40abc0d12d7373fd3c13a5cf12
 (DIR) parent 5bcf3b40cddd0d9259b53511be5157bb34395f0d
 (HTM) Author: Willy Goiffon <dev@z3bra.org>
       Date:   Mon, 22 Jun 2020 09:56:16 +0200
       
       Change border color types to match XCB pixel color type
       
       Diffstat:
         M config.def.h                        |       4 ++--
       
       1 file changed, 2 insertions(+), 2 deletions(-)
       ---
 (DIR) diff --git a/config.def.h b/config.def.h
       t@@ -11,8 +11,8 @@ int modifier = XCB_MOD_MASK_1;
        
        /* window borders and titlebar */
        int border = 2;
       -int border_color = 0x666666;
       -int border_color_active = 0xdeadca7;
       +uint32_t border_color = 0x666666;
       +uint32_t border_color_active = 0xdeadca7;
        
        /* move/resize step amound in pixels */
        int move_step = 8;