URI:
       tAdd cyan border around windows - dwm - [fork] customized build of dwm, the dynamic window manager
  HTML git clone git://src.adamsgaard.dk/dwm
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
   DIR commit fcc8bf83ee465dfca3e3adb08afb4e37143d98cb
   DIR parent a4d2d73ecc31b82a693ddc8d2b9b3c21fa551e38
  HTML Author: Anders Damsgaard <anders@adamsgaard.dk>
       Date:   Thu, 18 Jun 2020 07:50:59 +0200
       
       Add cyan border around windows
       
       Diffstat:
         M config.h                            |       4 ++--
       
       1 file changed, 2 insertions(+), 2 deletions(-)
       ---
   DIR diff --git a/config.h b/config.h
       t@@ -1,7 +1,7 @@
        /* See LICENSE file for copyright and license details. */
        
        /* appearance */
       -static const unsigned int borderpx  = 0;        /* border pixel of windows */
       +static const unsigned int borderpx  = 2;        /* border pixel of windows */
        static const unsigned int snap      = 32;       /* snap pixel */
        static const int showbar            = 1;        /* 0 means no bar */
        static const int topbar             = 1;        /* 0 means bottom bar */
       t@@ -14,7 +14,7 @@ static const char col_cyan[] = "#8abeb7";
        static const char *colors[][3]      = {
                /*               fg         bg         border   */
                [SchemeNorm] = { col_gray3, col_gray1, col_gray2 },
       -        [SchemeSel]  = { col_gray4, col_cyan,  col_cyan  },
       +        [SchemeSel]  = { col_gray4, col_cyan,  col_cyan },
        };
        
        /* tagging */