X-Git-Url: https://git.danieliu.xyz/?a=blobdiff_plain;f=config.def.h;h=1b11d10ac7384a9de25325bf24a0d0036c61d3c9;hb=c2da2bae5dbca73f26fe77bb8080e2a90d3cbb1d;hp=08ff70721c06b6b63779cb87ae86d4a953977bf8;hpb=067c313e6ce1ab19116088d7e0b1618080c9b4a7;p=surf.git diff --git a/config.def.h b/config.def.h index 08ff707..1b11d10 100644 --- a/config.def.h +++ b/config.def.h @@ -2,16 +2,24 @@ 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 *stylefile = "~/.surf/style.css"; static char *scriptfile = "~/.surf/script.js"; +static char *styledir = "~/.surf/styles/"; + +static Bool kioskmode = FALSE; /* Ignore shortcuts */ +static Bool showindicators = TRUE; /* Show indicators in window title */ +static Bool zoomto96dpi = TRUE; /* Zoom pages to always emulate 96dpi */ +static Bool runinfullscreen = FALSE; /* Run in fullscreen mode by default */ + +static guint defaultfontsize = 12; /* Default font size */ +static gfloat zoomlevel = 1.0; /* Default zoom level */ + +/* Soup default features */ static char *cookiefile = "~/.surf/cookies.txt"; -static time_t sessiontime = 3600; +static char *cookiepolicies = "Aa@"; /* A: accept all; a: accept nothing, + @: accept no third party */ static char *cafile = "/etc/ssl/certs/ca-certificates.crt"; static char *strictssl = FALSE; /* Refuse untrusted SSL connections */ -static Bool kioskmode = FALSE; /* Ignore shortcuts */ -static Bool showindicators = TRUE; /* Show indicators in window title */ - -static guint defaultfontsize = 12; +static time_t sessiontime = 3600; /* Webkit default features */ static Bool enablescrollbars = TRUE; @@ -19,6 +27,7 @@ static Bool enablespatialbrowsing = TRUE; static Bool enableplugins = TRUE; static Bool enablescripts = TRUE; static Bool enableinspector = TRUE; +static Bool enablestyles = TRUE; static Bool loadimages = TRUE; static Bool hidebackground = FALSE; static Bool allowgeolocation = TRUE; @@ -41,6 +50,12 @@ static Bool allowgeolocation = TRUE; } \ } +/* styles */ +static SiteStyle styles[] = { + /* regexp file in $styledir */ + { ".*", "default.css" }, +}; + #define MODKEY GDK_CONTROL_MASK /* hotkeys */ @@ -66,12 +81,12 @@ static Key keys[] = { { 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 } }, + { 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 } }, @@ -89,8 +104,9 @@ static Key keys[] = { { 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" } }, - { MODKEY|GDK_SHIFT_MASK,GDK_m, togglestyle,{ 0 } }, - { MODKEY|GDK_SHIFT_MASK,GDK_b, togglescrollbars,{ 0 } }, + { MODKEY|GDK_SHIFT_MASK,GDK_a, togglecookiepolicy, { 0 } }, + { MODKEY|GDK_SHIFT_MASK,GDK_m, togglestyle, { 0 } }, + { MODKEY|GDK_SHIFT_MASK,GDK_b, togglescrollbars, { 0 } }, { MODKEY|GDK_SHIFT_MASK,GDK_g, togglegeolocation, { 0 } }, };