2009-09-06 13:41:07 +02:00
|
|
|
/* modifier 0 means no modifier */
|
2015-11-20 17:12:00 +01:00
|
|
|
static int surfuseragent = 1; /* Append Surf version to default WebKit user agent */
|
|
|
|
static char *fulluseragent = ""; /* Or override the whole user agent string */
|
2012-10-31 21:16:12 +01:00
|
|
|
static char *scriptfile = "~/.surf/script.js";
|
2015-01-17 07:19:48 +01:00
|
|
|
static char *styledir = "~/.surf/styles/";
|
2015-11-18 17:17:49 +01:00
|
|
|
static char *cachedir = "~/.surf/cache/";
|
2014-01-30 20:36:06 +01:00
|
|
|
|
2015-11-22 02:03:26 +01:00
|
|
|
static int kioskmode = 0; /* Ignore shortcuts */
|
|
|
|
static int showindicators = 1; /* Show indicators in window title */
|
|
|
|
static int runinfullscreen = 0; /* Run in fullscreen mode by default */
|
2012-11-16 16:12:09 +01:00
|
|
|
|
2013-10-19 18:55:53 +02:00
|
|
|
static guint defaultfontsize = 12; /* Default font size */
|
2015-11-22 01:42:34 +01:00
|
|
|
static gfloat zoomlevel = 1.0; /* Default zoom level */
|
2013-03-14 06:35:42 +01:00
|
|
|
|
2014-01-30 20:36:06 +01:00
|
|
|
/* Soup default features */
|
|
|
|
static char *cookiefile = "~/.surf/cookies.txt";
|
|
|
|
static char *cookiepolicies = "Aa@"; /* A: accept all; a: accept nothing,
|
2015-10-31 17:49:36 +01:00
|
|
|
* @: accept no third party */
|
2015-11-22 02:03:26 +01:00
|
|
|
static int strictssl = 0; /* Refuse untrusted SSL connections */
|
2014-01-30 20:36:06 +01:00
|
|
|
|
2015-11-22 19:13:48 +01:00
|
|
|
/* Languages */
|
|
|
|
static int enablespellchecking = 0;
|
|
|
|
static const char *spellinglanguages[] = { "en_US", NULL };
|
|
|
|
static const char *preferedlanguages[] = { NULL };
|
|
|
|
|
2013-01-26 15:53:33 +01:00
|
|
|
/* Webkit default features */
|
2015-11-22 02:03:26 +01:00
|
|
|
static int enablescrollbars = 1;
|
|
|
|
static int enablecaretbrowsing = 1;
|
|
|
|
static int enablecache = 1;
|
|
|
|
static int enableplugins = 1;
|
|
|
|
static int enablescripts = 1;
|
|
|
|
static int enableinspector = 1;
|
|
|
|
static int enablestyle = 1;
|
|
|
|
static int loadimages = 1;
|
|
|
|
static int hidebackground = 0;
|
|
|
|
static int allowgeolocation = 1;
|
|
|
|
static int enablednsprefetching = 0;
|
|
|
|
static int enableframeflattening = 0;
|
2009-10-17 12:41:40 +02:00
|
|
|
|
2015-11-20 01:12:28 +01:00
|
|
|
static WebKitFindOptions findopts = WEBKIT_FIND_OPTIONS_CASE_INSENSITIVE |
|
|
|
|
WEBKIT_FIND_OPTIONS_WRAP_AROUND;
|
|
|
|
|
2012-11-20 16:02:57 +01:00
|
|
|
#define SETPROP(p, q) { \
|
2015-11-22 01:42:34 +01:00
|
|
|
.v = (const char *[]){ "/bin/sh", "-c", \
|
|
|
|
"prop=\"`xprop -id $2 $0 " \
|
|
|
|
"| sed \"s/^$0(STRING) = \\(\\\\\"\\?\\)\\(.*\\)\\1$/\\2/\" " \
|
|
|
|
"| xargs -0 printf %b | dmenu`\" &&" \
|
|
|
|
"xprop -id $2 -f $1 8s -set $1 \"$prop\"", \
|
|
|
|
p, q, winid, NULL \
|
|
|
|
} \
|
2012-11-20 16:02:57 +01:00
|
|
|
}
|
2012-11-20 11:53:29 +01:00
|
|
|
|
|
|
|
/* DOWNLOAD(URI, referer) */
|
|
|
|
#define DOWNLOAD(d, r) { \
|
2015-11-22 01:42:34 +01:00
|
|
|
.v = (const char *[]){ "/bin/sh", "-c", \
|
2016-03-06 01:14:52 +01:00
|
|
|
"st -e /bin/sh -c \"curl -g -L -J -O --user-agent '$1'" \
|
2015-11-22 01:42:34 +01:00
|
|
|
" --referer '$2' -b $3 -c $3 '$0';" \
|
|
|
|
" sleep 5;\"", \
|
|
|
|
d, useragent, r, cookiefile, NULL \
|
|
|
|
} \
|
2012-11-20 16:02:57 +01:00
|
|
|
}
|
2012-11-20 11:53:29 +01:00
|
|
|
|
2015-01-19 22:15:18 +01:00
|
|
|
/* PLUMB(URI) */
|
2015-01-19 22:16:07 +01:00
|
|
|
/* This called when some URI which does not begin with "about:",
|
|
|
|
* "http://" or "https://" should be opened.
|
|
|
|
*/
|
2015-01-19 22:15:18 +01:00
|
|
|
#define PLUMB(u) {\
|
2015-11-22 01:42:34 +01:00
|
|
|
.v = (const char *[]){ "/bin/sh", "-c", \
|
|
|
|
"xdg-open \"$0\"", u, NULL \
|
|
|
|
} \
|
2015-01-19 22:15:18 +01:00
|
|
|
}
|
|
|
|
|
2015-11-21 19:53:29 +01:00
|
|
|
/* VIDEOPLAY(URI) */
|
|
|
|
#define VIDEOPLAY(u) {\
|
2015-11-22 01:42:34 +01:00
|
|
|
.v = (const char *[]){ "/bin/sh", "-c", \
|
|
|
|
"mpv --really-quiet \"$0\"", u, NULL \
|
|
|
|
} \
|
2015-11-21 19:53:29 +01:00
|
|
|
}
|
|
|
|
|
2015-01-17 07:19:48 +01:00
|
|
|
/* styles */
|
2015-01-18 14:41:20 +01:00
|
|
|
/*
|
|
|
|
* The iteration will stop at the first match, beginning at the beginning of
|
|
|
|
* the list.
|
|
|
|
*/
|
2015-01-17 07:19:48 +01:00
|
|
|
static SiteStyle styles[] = {
|
2015-10-31 17:49:36 +01:00
|
|
|
/* regexp file in $styledir */
|
|
|
|
{ ".*", "default.css" },
|
2015-01-17 07:19:48 +01:00
|
|
|
};
|
|
|
|
|
2009-09-07 14:28:43 +02:00
|
|
|
#define MODKEY GDK_CONTROL_MASK
|
2012-11-20 11:53:29 +01:00
|
|
|
|
|
|
|
/* hotkeys */
|
2013-01-26 16:00:52 +01:00
|
|
|
/*
|
|
|
|
* If you use anything else but MODKEY and GDK_SHIFT_MASK, don't forget to
|
|
|
|
* edit the CLEANMASK() macro.
|
|
|
|
*/
|
2009-09-07 09:44:21 +02:00
|
|
|
static Key keys[] = {
|
2015-11-22 01:42:34 +01:00
|
|
|
/* modifier keyval function arg */
|
2015-11-21 19:14:08 +01:00
|
|
|
{ MODKEY, GDK_KEY_g, spawn, SETPROP("_SURF_URI", "_SURF_GO") },
|
|
|
|
{ MODKEY, GDK_KEY_f, spawn, SETPROP("_SURF_FIND", "_SURF_FIND") },
|
|
|
|
{ MODKEY, GDK_KEY_slash, spawn, SETPROP("_SURF_FIND", "_SURF_FIND") },
|
2015-05-11 12:48:40 +02:00
|
|
|
|
2015-11-21 19:14:08 +01:00
|
|
|
{ 0, GDK_KEY_Escape, stop, { 0 } },
|
|
|
|
{ MODKEY, GDK_KEY_c, stop, { 0 } },
|
2015-05-11 12:48:40 +02:00
|
|
|
|
2015-11-22 02:03:26 +01:00
|
|
|
{ MODKEY|GDK_SHIFT_MASK, GDK_KEY_r, reload, { .b = 1 } },
|
|
|
|
{ MODKEY, GDK_KEY_r, reload, { .b = 0 } },
|
2015-05-11 12:48:40 +02:00
|
|
|
|
|
|
|
{ MODKEY, GDK_KEY_l, navigate, { .i = +1 } },
|
|
|
|
{ MODKEY, GDK_KEY_h, navigate, { .i = -1 } },
|
|
|
|
|
2016-03-02 14:29:21 +01:00
|
|
|
/* Currently we have to use scrolling steps that WebKit2GTK+ gives us
|
|
|
|
* d: step down, u: step up, r: step right, l:step left
|
|
|
|
* D: page down, U: page up */
|
|
|
|
{ MODKEY, GDK_KEY_j, scroll, { .i = 'd' } },
|
|
|
|
{ MODKEY, GDK_KEY_k, scroll, { .i = 'u' } },
|
|
|
|
{ MODKEY, GDK_KEY_b, scroll, { .i = 'U' } },
|
|
|
|
{ MODKEY, GDK_KEY_space, scroll, { .i = 'D' } },
|
|
|
|
{ MODKEY, GDK_KEY_i, scroll, { .i = 'r' } },
|
|
|
|
{ MODKEY, GDK_KEY_u, scroll, { .i = 'l' } },
|
|
|
|
|
2015-05-11 12:48:40 +02:00
|
|
|
|
2015-11-21 19:14:08 +01:00
|
|
|
{ MODKEY|GDK_SHIFT_MASK, GDK_KEY_j, zoom, { .i = -1 } },
|
|
|
|
{ MODKEY|GDK_SHIFT_MASK, GDK_KEY_k, zoom, { .i = +1 } },
|
|
|
|
{ MODKEY|GDK_SHIFT_MASK, GDK_KEY_q, zoom, { .i = 0 } },
|
|
|
|
{ MODKEY, GDK_KEY_minus, zoom, { .i = -1 } },
|
|
|
|
{ MODKEY, GDK_KEY_plus, zoom, { .i = +1 } },
|
2015-05-11 12:48:40 +02:00
|
|
|
|
2015-11-22 02:03:26 +01:00
|
|
|
{ MODKEY, GDK_KEY_p, clipboard, { .b = 1 } },
|
|
|
|
{ MODKEY, GDK_KEY_y, clipboard, { .b = 0 } },
|
2015-05-11 12:48:40 +02:00
|
|
|
|
2015-11-20 01:12:28 +01:00
|
|
|
{ MODKEY, GDK_KEY_n, find, { .i = +1 } },
|
|
|
|
{ MODKEY|GDK_SHIFT_MASK, GDK_KEY_n, find, { .i = -1 } },
|
2015-05-11 12:48:40 +02:00
|
|
|
|
2015-11-21 19:14:08 +01:00
|
|
|
{ MODKEY|GDK_SHIFT_MASK, GDK_KEY_p, print, { 0 } },
|
|
|
|
|
|
|
|
{ MODKEY|GDK_SHIFT_MASK, GDK_KEY_a, togglecookiepolicy, { 0 } },
|
|
|
|
{ 0, GDK_KEY_F11, togglefullscreen, { 0 } },
|
|
|
|
{ MODKEY|GDK_SHIFT_MASK, GDK_KEY_o, toggleinspector, { 0 } },
|
|
|
|
{ MODKEY|GDK_SHIFT_MASK, GDK_KEY_m, togglestyle, { 0 } },
|
|
|
|
|
2015-11-20 15:48:04 +01:00
|
|
|
{ MODKEY|GDK_SHIFT_MASK, GDK_KEY_c, toggle, { .i = CaretBrowsing } },
|
|
|
|
{ MODKEY|GDK_SHIFT_MASK, GDK_KEY_f, toggle, { .i = FrameFlattening } },
|
|
|
|
{ MODKEY|GDK_SHIFT_MASK, GDK_KEY_g, toggle, { .i = Geolocation } },
|
|
|
|
{ MODKEY|GDK_SHIFT_MASK, GDK_KEY_s, toggle, { .i = JavaScript } },
|
|
|
|
{ MODKEY|GDK_SHIFT_MASK, GDK_KEY_i, toggle, { .i = LoadImages } },
|
|
|
|
{ MODKEY|GDK_SHIFT_MASK, GDK_KEY_v, toggle, { .i = Plugins } },
|
|
|
|
{ MODKEY|GDK_SHIFT_MASK, GDK_KEY_b, toggle, { .i = ScrollBars } },
|
2009-09-06 13:41:07 +02:00
|
|
|
};
|
2012-10-31 20:46:38 +01:00
|
|
|
|
2015-01-28 21:01:55 +01:00
|
|
|
/* button definitions */
|
2015-11-19 13:19:27 +01:00
|
|
|
/* target can be OnDoc, OnLink, OnImg, OnMedia, OnEdit, OnBar, OnSel, OnAny */
|
2015-01-28 21:01:55 +01:00
|
|
|
static Button buttons[] = {
|
2015-11-19 13:19:27 +01:00
|
|
|
/* target event mask button function argument stop event */
|
2015-11-20 16:19:24 +01:00
|
|
|
{ OnLink, 0, 2, clicknewwindow, { .b = 0 }, 1 },
|
|
|
|
{ OnLink, MODKEY, 2, clicknewwindow, { .b = 1 }, 1 },
|
|
|
|
{ OnLink, MODKEY, 1, clicknewwindow, { .b = 1 }, 1 },
|
|
|
|
{ OnAny, 0, 8, clicknavigate, { .i = -1 }, 1 },
|
|
|
|
{ OnAny, 0, 9, clicknavigate, { .i = +1 }, 1 },
|
2015-11-21 19:53:29 +01:00
|
|
|
{ OnMedia, MODKEY, 1, clickexternplayer, { 0 }, 1 },
|
2015-01-28 21:01:55 +01:00
|
|
|
};
|