diff --git a/config.def.h b/config.def.h index 5cf576e..b0d8021 100644 --- a/config.def.h +++ b/config.def.h @@ -10,9 +10,9 @@ static char *dldir = "~/dl/"; static char *dlstatus = "~/.surf/dlstatus/"; static SearchEngine searchengines[] = { - { "d ", "https://duckduckgo.com/?q=%s" }, - { "g ", "https://google.com/search?q=%s" }, - { "aw ", "https://wiki.archlinux.org/index.php?search=%s" }, + { "!d ", "https://duckduckgo.com/?q=%s" }, + { "!g ", "https://google.com/search?q=%s" }, + { "!aw ", "https://wiki.archlinux.org/index.php?search=%s" }, }; /* Webkit default features */ @@ -53,7 +53,7 @@ static Parameter defconfig[ParameterLast] = { [SpellLanguages] = { { .v = ((char *[]){ "en_US", NULL }) }, }, [StrictTLS] = { { .i = 1 }, }, [Style] = { { .i = 1 }, }, - [WebGL] = { { .i = 0 }, }, + [WebGL] = { { .i = 1 }, }, [ZoomLevel] = { { .f = 1.0 }, }, }; diff --git a/config.h b/config.h index 3964a51..2e212c3 100644 --- a/config.h +++ b/config.h @@ -10,9 +10,9 @@ static char *dldir = "~/dl/"; static char *dlstatus = "~/.surf/dlstatus/"; static SearchEngine searchengines[] = { - { "d ", "https://duckduckgo.com/?q=%s" }, - { "g ", "https://google.com/search?q=%s" }, - { "aw ", "https://wiki.archlinux.org/index.php?search=%s" }, + { "!d ", "https://duckduckgo.com/?q=%s" }, + { "!g ", "https://google.com/search?q=%s" }, + { "!aw ", "https://wiki.archlinux.org/index.php?search=%s" }, }; /* Webkit default features */ @@ -53,7 +53,7 @@ static Parameter defconfig[ParameterLast] = { [SpellLanguages] = { { .v = ((char *[]){ "en_US", NULL }) }, }, [StrictTLS] = { { .i = 1 }, }, [Style] = { { .i = 1 }, }, - [WebGL] = { { .i = 0 }, }, + [WebGL] = { { .i = 1 }, }, [ZoomLevel] = { { .f = 1.0 }, }, };