diff options
author | Manuel Palenzuela <manuelpalenzuelamerino@gmail.com> | 2019-08-06 09:39:15 +0200 |
---|---|---|
committer | Manuel Palenzuela <manuelpalenzuelamerino@gmail.com> | 2019-08-06 09:39:15 +0200 |
commit | a314ffca1d3307d5ddcb02bce0c235307e417267 (patch) | |
tree | c7722c6cf1a96f8145e61973656af54607057302 /config.h | |
parent | Changed button functionality clicking on layout symbol so that it cycles trough (diff) | |
download | dwm-a314ffca1d3307d5ddcb02bce0c235307e417267.tar.gz dwm-a314ffca1d3307d5ddcb02bce0c235307e417267.tar.bz2 dwm-a314ffca1d3307d5ddcb02bce0c235307e417267.zip |
Added urgentborder patch
Diffstat (limited to 'config.h')
-rw-r--r-- | config.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/config.h b/config.h index 993d20f..a501793 100644 --- a/config.h +++ b/config.h @@ -14,6 +14,8 @@ 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_red[] = "#ff0000"; + static const unsigned int baralpha = OPAQUE; //0xd0 is transparent static const unsigned int borderalpha = OPAQUE; @@ -22,6 +24,7 @@ static const char *colors[][3] = { /* fg bg border */ [SchemeNorm] = { col_gray3, col_gray1, col_gray2 }, [SchemeSel] = { col_gray4, col_cyan, col_cyan }, + [SchemeUrg] = { col_gray4, col_cyan, col_red }, [SchemeTitle]= { col_gray3, col_gray1, col_gray2 }, }; @@ -29,6 +32,7 @@ static const unsigned int alphas[][3] = { /* fg bg border */ [SchemeNorm] = { OPAQUE, baralpha, borderalpha }, [SchemeSel] = { OPAQUE, baralpha, borderalpha }, + [SchemeUrg] = { OPAQUE, baralpha, borderalpha }, [SchemeTitle]= { OPAQUE, baralpha, borderalpha }, }; @@ -118,6 +122,7 @@ static Key keys[] = { TAGKEYS( XK_8, 7) TAGKEYS( XK_9, 8) { MODKEY|ShiftMask, XK_q, quit, {0} }, + }; /* button definitions */ |