~kris/suckless

tabbed

a1b70380dbfc83b2044cad3ce46f68e2878dd976 — Enno Boland (tox) 17 years ago 03f0a3b
moving config.h to config.def.h.
2 files changed, 15 insertions(+), 11 deletions(-)

M Makefile
R {config => config.def}.h
M Makefile => Makefile +5 -1
@@ 18,7 18,11 @@ options:
	@echo CC $<
	@${CC} -c ${CFLAGS} $<

${OBJ}: config.mk
${OBJ}: config.h config.mk

config.h:
	@echo creating $@ from config.def.h
	@cp config.def.h $@

surf: ${OBJ}
	@echo CC -o $@

R config.h => config.def.h +10 -10
@@ 3,20 3,13 @@ static GdkColor progress       = { 65535,65535,0,0 };
static GdkColor progress_trust = { 65535,0,65535,0 };
static Key keys[] = {
    /* modifier	            keyval      function        arg             Focus */
    { 0,                    GDK_Escape, hidesearch,     {0},            ALWAYS },
    { 0,                    GDK_Escape, hideurl,        {0},            ALWAYS },
    { GDK_CONTROL_MASK,     GDK_P,      print,          {0},            ALWAYS },
    { 0,                    GDK_Return, searchtext,     {.b = TRUE},    SEARCHBAR },
    { GDK_SHIFT_MASK,       GDK_Return, searchtext,     {.b = FALSE},   SEARCHBAR },
    { GDK_CONTROL_MASK,     GDK_n,      searchtext,     {.b = TRUE},    BROWSER|SEARCHBAR },
    { GDK_CONTROL_MASK,     GDK_N,      searchtext,     {.b = FALSE},   BROWSER|SEARCHBAR },
    { 0 },
    { GDK_CONTROL_MASK,     GDK_R,      reload,         {.b = TRUE},    ALWAYS },
    { GDK_CONTROL_MASK,     GDK_r,      reload,         {.b = FALSE},   ALWAYS },
    { GDK_CONTROL_MASK,     GDK_g,      showurl,        {0},            ALWAYS },
    { GDK_CONTROL_MASK,     GDK_slash,  showsearch,     {0},            ALWAYS },
    { 0,                    GDK_Return, loaduri,        {.v = NULL},    URLBAR },
    { 0,                    GDK_Return, hideurl,        {0},            URLBAR },
    { 0,                    GDK_Escape, hidesearch,     {0},            ALWAYS },
    { 0,                    GDK_Escape, hideurl,        {0},            ALWAYS },
    { GDK_CONTROL_MASK,     GDK_P,      print,          {0},            ALWAYS },
    { GDK_CONTROL_MASK,     GDK_p,      clipboard,      {.b = TRUE },   BROWSER },
    { GDK_CONTROL_MASK,     GDK_y,      clipboard,      {.b = FALSE},   BROWSER },
    { GDK_CONTROL_MASK,     GDK_equal,  zoom,           {.i = +1 },     BROWSER },


@@ 26,5 19,12 @@ static Key keys[] = {
    { GDK_CONTROL_MASK,     GDK_l,      navigate,       {.i = +1},      BROWSER },
    { GDK_CONTROL_MASK,     GDK_h,      navigate,       {.i = -1},      BROWSER },
    { 0,                    GDK_Escape, stop,           {0},            BROWSER },
    { GDK_CONTROL_MASK,     GDK_n,      searchtext,     {.b = TRUE},    BROWSER|SEARCHBAR },
    { GDK_CONTROL_MASK,     GDK_N,      searchtext,     {.b = FALSE},   BROWSER|SEARCHBAR },
    { 0,                    GDK_Return, searchtext,     {.b = TRUE},    SEARCHBAR },
    { GDK_SHIFT_MASK,       GDK_Return, searchtext,     {.b = FALSE},   SEARCHBAR },
    { 0 },
    { 0,                    GDK_Return, loaduri,        {.v = NULL},    URLBAR },
    { 0,                    GDK_Return, hideurl,        {0},            URLBAR },
};