summaryrefslogtreecommitdiff
path: root/surf
diff options
context:
space:
mode:
authorMaximilian Dietrich <dxm@openmailbox.org>2013-08-19 20:26:13 +0200
committerMaximilian Dietrich <dxm@openmailbox.org>2013-08-19 20:26:13 +0200
commitd0a6b3f2a51b4f7dfcbd4169ba2bd4271758454b (patch)
tree5be8e46b9d4c9b165a07d84ac6eb478d7f49844c /surf
parent2517e7a8759fd2e53c90c300029344e7c1771ed0 (diff)
downloadcontrib-d0a6b3f2a51b4f7dfcbd4169ba2bd4271758454b.tar.gz
contrib-d0a6b3f2a51b4f7dfcbd4169ba2bd4271758454b.tar.xz
surf: initial commit
Diffstat (limited to 'surf')
-rw-r--r--surf/.footprint6
-rw-r--r--surf/.md5sum2
-rw-r--r--surf/Pkgfile19
-rw-r--r--surf/README1
-rw-r--r--surf/config.h95
5 files changed, 123 insertions, 0 deletions
diff --git a/surf/.footprint b/surf/.footprint
new file mode 100644
index 000000000..f8d9dab74
--- /dev/null
+++ b/surf/.footprint
@@ -0,0 +1,6 @@
+drwxr-xr-x root/root usr/
+drwxr-xr-x root/root usr/bin/
+-rwxr-xr-x root/root usr/bin/surf
+drwxr-xr-x root/root usr/man/
+drwxr-xr-x root/root usr/man/man1/
+-rw-r--r-- root/root usr/man/man1/surf.1.gz
diff --git a/surf/.md5sum b/surf/.md5sum
new file mode 100644
index 000000000..77b3785e3
--- /dev/null
+++ b/surf/.md5sum
@@ -0,0 +1,2 @@
+15c2c911658e2e6085e4c4fa7a7b01c1 config.h
+aeeed723b562a30cc6a2b3ea18f6d99a surf-0.6.tar.gz
diff --git a/surf/Pkgfile b/surf/Pkgfile
new file mode 100644
index 000000000..a80f90948
--- /dev/null
+++ b/surf/Pkgfile
@@ -0,0 +1,19 @@
+# Description: simple web-browser
+# URL: http://surf.suckless.org/
+# Maintainer: Maximilian Dietrich, dxm at openmailbox dot org
+# Depends on: webkit dmenu curl xorg-xprop xterm ca-certificates
+
+name=surf
+version=0.6
+release=1
+source=(http://dl.suckless.org/surf/$name-$version.tar.gz config.h)
+
+build () {
+ cd "$name-$version"
+ cp $SRC/config.h .
+ make
+ make DESTDIR=$PKG \
+ PREFIX=/usr \
+ MANPREFIX=/usr/man \
+ install
+}
diff --git a/surf/README b/surf/README
new file mode 100644
index 000000000..c57bb8fae
--- /dev/null
+++ b/surf/README
@@ -0,0 +1 @@
+Edit config.h and rebuild the package to configure surf.
diff --git a/surf/config.h b/surf/config.h
new file mode 100644
index 000000000..a221c86e3
--- /dev/null
+++ b/surf/config.h
@@ -0,0 +1,95 @@
+/* modifier 0 means no modifier */
+static char *useragent = "Mozilla/5.0 (X11; U; Unix; en-US) "
+ "AppleWebKit/537.15 (KHTML, like Gecko) Chrome/24.0.1295.0 "
+ "Safari/537.15 Surf/"VERSION;
+static char *progress = "#0000FF";
+static char *progress_untrust = "#FF0000";
+static char *progress_trust = "#00FF00";
+static char *progress_proxy = "#FFFF00";
+static char *progress_proxy_trust = "#66FF00";
+static char *progress_proxy_untrust = "#FF6600";
+static char *stylefile = "~/.surf/style.css";
+static char *scriptfile = "~/.surf/script.js";
+static char *cookiefile = "~/.surf/cookies.txt";
+static time_t sessiontime = 3600;
+static char *cafile = "/etc/ssl/certs/ca-certificates.crt";
+static char *strictssl = FALSE; /* Refuse untrusted SSL connections */
+static int indicator_thickness = 2;
+
+/* Webkit default features */
+static Bool enablespatialbrowsing = TRUE;
+static Bool enableplugins = TRUE;
+static Bool enablescripts = TRUE;
+static Bool enableinspector = TRUE;
+static Bool loadimages = TRUE;
+static Bool hidebackground = FALSE;
+
+#define SETPROP(p, q) { \
+ .v = (char *[]){ "/bin/sh", "-c", \
+ "prop=\"`xprop -id $2 $0 | cut -d '\"' -f 2 | dmenu`\" &&" \
+ "xprop -id $2 -f $1 8s -set $1 \"$prop\"", \
+ p, q, winid, NULL \
+ } \
+}
+
+/* DOWNLOAD(URI, referer) */
+#define DOWNLOAD(d, r) { \
+ .v = (char *[]){ "/bin/sh", "-c", \
+ "st -e /bin/sh -c \"curl -J -O --user-agent '$1'" \
+ " --referer '$2'" \
+ " -b ~/.surf/cookies.txt -c ~/.surf/cookies.txt '$0';" \
+ " sleep 5;\"", \
+ d, useragent, r, NULL \
+ } \
+}
+
+#define MODKEY GDK_CONTROL_MASK
+
+/* hotkeys */
+/*
+ * If you use anything else but MODKEY and GDK_SHIFT_MASK, don't forget to
+ * edit the CLEANMASK() macro.
+ */
+static Key keys[] = {
+ /* modifier keyval function arg Focus */
+ { MODKEY|GDK_SHIFT_MASK,GDK_r, reload, { .b = TRUE } },
+ { MODKEY, GDK_r, reload, { .b = FALSE } },
+ { MODKEY|GDK_SHIFT_MASK,GDK_p, print, { 0 } },
+
+ { MODKEY, GDK_p, clipboard, { .b = TRUE } },
+ { MODKEY, GDK_y, clipboard, { .b = FALSE } },
+
+ { MODKEY|GDK_SHIFT_MASK,GDK_j, zoom, { .i = -1 } },
+ { MODKEY|GDK_SHIFT_MASK,GDK_k, zoom, { .i = +1 } },
+ { MODKEY|GDK_SHIFT_MASK,GDK_q, zoom, { .i = 0 } },
+ { MODKEY, GDK_minus, zoom, { .i = -1 } },
+ { MODKEY, GDK_plus, zoom, { .i = +1 } },
+
+ { MODKEY, GDK_l, navigate, { .i = +1 } },
+ { MODKEY, GDK_h, navigate, { .i = -1 } },
+
+ { MODKEY, GDK_j, scroll_v, { .i = +1 } },
+ { MODKEY, GDK_k, scroll_v, { .i = -1 } },
+ { MODKEY, GDK_b, scroll_v, { .i = -10000 } },
+ { MODKEY, GDK_space, scroll_v, { .i = +10000 } },
+ { MODKEY, GDK_i, scroll_h, { .i = +1 } },
+ { MODKEY, GDK_u, scroll_h, { .i = -1 } },
+
+ { 0, GDK_F11, fullscreen, { 0 } },
+ { 0, GDK_Escape, stop, { 0 } },
+ { MODKEY, GDK_o, source, { 0 } },
+ { MODKEY|GDK_SHIFT_MASK,GDK_o, inspector, { 0 } },
+
+ { MODKEY, GDK_g, spawn, SETPROP("_SURF_URI", "_SURF_GO") },
+ { MODKEY, GDK_f, spawn, SETPROP("_SURF_FIND", "_SURF_FIND") },
+ { MODKEY, GDK_slash, spawn, SETPROP("_SURF_FIND", "_SURF_FIND") },
+
+ { MODKEY, GDK_n, find, { .b = TRUE } },
+ { MODKEY|GDK_SHIFT_MASK,GDK_n, find, { .b = FALSE } },
+
+ { MODKEY|GDK_SHIFT_MASK,GDK_c, toggle, { .v = "enable-caret-browsing" } },
+ { MODKEY|GDK_SHIFT_MASK,GDK_i, toggle, { .v = "auto-load-images" } },
+ { MODKEY|GDK_SHIFT_MASK,GDK_s, toggle, { .v = "enable-scripts" } },
+ { MODKEY|GDK_SHIFT_MASK,GDK_v, toggle, { .v = "enable-plugins" } },
+};
+

Generated by cgit