[hackers] [surf] moving config.h to config.def.h. || Enno Boland (tox)

From: <hg_AT_suckless.org>
Date: Mon, 7 Sep 2009 09:41:59 +0000 (UTC)

changeset: 67:043bdaacae84
tag: tip
user: Enno Boland (tox) <tox_AT_s01.de>
date: Mon Sep 07 11:43:31 2009 +0200
files: Makefile config.def.h config.h
description:
moving config.h to config.def.h.

diff -r 740f25ee1c92 -r 043bdaacae84 Makefile
--- a/Makefile Mon Sep 07 11:02:26 2009 +0200
+++ b/Makefile Mon Sep 07 11:43:31 2009 +0200
@@ -18,7 +18,11 @@
         @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 $@
diff -r 740f25ee1c92 -r 043bdaacae84 config.def.h
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/config.def.h Mon Sep 07 11:43:31 2009 +0200
@@ -0,0 +1,30 @@
+/* modifier 0 means no modifier */
+static GdkColor progress = { 65535,65535,0,0 };
+static GdkColor progress_trust = { 65535,0,65535,0 };
+static Key keys[] = {
+ /* modifier keyval function arg Focus */
+ { 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_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 },
+ { GDK_CONTROL_MASK, GDK_plus, zoom, {.i = +1 }, BROWSER },
+ { GDK_CONTROL_MASK, GDK_minus, zoom, {.i = -1 }, BROWSER },
+ { GDK_CONTROL_MASK, GDK_0, zoom, {.i = 0 }, BROWSER },
+ { 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 },
+};
+
diff -r 740f25ee1c92 -r 043bdaacae84 config.h
--- a/config.h Mon Sep 07 11:02:26 2009 +0200
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,30 +0,0 @@
-/* modifier 0 means no modifier */
-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 },
- { 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 },
- { GDK_CONTROL_MASK, GDK_plus, zoom, {.i = +1 }, BROWSER },
- { GDK_CONTROL_MASK, GDK_minus, zoom, {.i = -1 }, BROWSER },
- { GDK_CONTROL_MASK, GDK_0, zoom, {.i = 0 }, BROWSER },
- { GDK_CONTROL_MASK, GDK_l, navigate, {.i = +1}, BROWSER },
- { GDK_CONTROL_MASK, GDK_h, navigate, {.i = -1}, BROWSER },
- { 0, GDK_Escape, stop, {0}, BROWSER },
-};
-
Received on Mon Sep 07 2009 - 09:41:59 UTC

This archive was generated by hypermail 2.2.0 : Mon Sep 07 2009 - 09:48:05 UTC