tabbed

Customized build of tabbed, the suckless tab manager
git clone git://src.adamsgaard.dk/tabbed
Log | Files | Refs | Submodules | README

commit 190f7082f58b7f0c9f8d9f8f72c4e857faf88827
parent d0031fc3cb5a69ced0e50e97cae77f4ae31fcb6e
Author: Anders Damsgaard <anders@adamsgaard.dk>
Date:   Wed,  6 Feb 2019 11:07:01 +0100

Remap urgent-related bindings to avoid conflict with C-u/C-d surf navigation

Diffstat:
Mconfig.h | 12+++++++-----
1 file changed, 7 insertions(+), 5 deletions(-)

diff --git a/config.h b/config.h @@ -1,10 +1,10 @@ /* See LICENSE file for copyright and license details. */ /* appearance */ -static const char font[] = "monospace:size=9"; +static const char font[] = "Pragmata Pro:size=10"; static const char* normbgcolor = "#222222"; -static const char* normfgcolor = "#cccccc"; -static const char* selbgcolor = "#555555"; +static const char* normfgcolor = "#888888"; +static const char* selbgcolor = "#333333"; static const char* selfgcolor = "#ffffff"; static const char* urgbgcolor = "#111111"; static const char* urgfgcolor = "#cc0000"; @@ -59,8 +59,10 @@ static Key keys[] = { { MODKEY, XK_q, killclient, { 0 } }, - { MODKEY, XK_u, focusurgent, { 0 } }, - { MODKEY|ShiftMask, XK_u, toggle, { .v = (void*) &urgentswitch } }, + { MODKEY|ShiftMask, XK_u, focusurgent, { 0 } }, + { MODKEY|ShiftMask, XK_t, toggle, { .v = (void*) &urgentswitch } }, + /* { MODKEY, XK_u, focusurgent, { 0 } }, */ + /* { MODKEY|ShiftMask, XK_u, toggle, { .v = (void*) &urgentswitch } }, */ { 0, XK_F11, fullscreen, { 0 } }, };