Changed active client to have a wide, red border.
authorAaron Taylor <ataylor@subgeniuskitty.com>
Fri, 3 Feb 2023 05:46:24 +0000 (21:46 -0800)
committerAaron Taylor <ataylor@subgeniuskitty.com>
Fri, 3 Feb 2023 05:46:24 +0000 (21:46 -0800)
README
config.h

diff --git a/README b/README
index 8822f58..28f4196 100644 (file)
--- a/README
+++ b/README
@@ -23,6 +23,8 @@ The changes made to stock dwm add the following abilities.
   - Center window names in status bar.
     <https://dwm.suckless.org/patches/centeredwindowname/>
 
   - Center window names in status bar.
     <https://dwm.suckless.org/patches/centeredwindowname/>
 
+  - Active client has wide, red border.
+
   - Customized rules/keybindings in `config.h`.
 
 In addition to the usual dependencies and installation tasks for dwm (see the
   - Customized rules/keybindings in `config.h`.
 
 In addition to the usual dependencies and installation tasks for dwm (see the
index 8cca0cc..75b776e 100644 (file)
--- a/config.h
+++ b/config.h
@@ -1,7 +1,7 @@
 /* See LICENSE file for copyright and license details. */
 
 /* appearance */
 /* See LICENSE file for copyright and license details. */
 
 /* appearance */
-static const unsigned int borderpx  = 1;        /* border pixel of windows */
+static const unsigned int borderpx  = 4;        /* 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 */
 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 */
@@ -16,10 +16,11 @@ static const char col_gray2[]       = "#444444";
 static const char col_gray3[]       = "#bbbbbb";
 static const char col_gray4[]       = "#eeeeee";
 static const char col_cyan[]        = "#005577";
 static const char col_gray3[]       = "#bbbbbb";
 static const char col_gray4[]       = "#eeeeee";
 static const char col_cyan[]        = "#005577";
+static const char col_red[]         = "#ff0000";
 static const char *colors[][3]      = {
        /*               fg         bg         border   */
        [SchemeNorm] = { col_gray3, col_gray1, col_gray2 },
 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_red   },
 };
 
 /* tagging */
 };
 
 /* tagging */