From 591d99e6918f9552c80aa3051ca685d641791824 Mon Sep 17 00:00:00 2001 From: gutmet Date: Sun, 14 Mar 2021 13:34:01 +0100 Subject: [PATCH] don't show indicators, use ctrl+c/v for uri clipboard, print on ctrl+p --- config.def.h | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/config.def.h b/config.def.h index 0230bda..0e2a0d3 100644 --- a/config.def.h +++ b/config.def.h @@ -45,7 +45,7 @@ static Parameter defconfig[ParameterLast] = { [PreferredLanguages] = { { .v = (char *[]){ NULL } }, }, [RunInFullscreen] = { { .i = 0 }, }, [ScrollBars] = { { .i = 1 }, }, - [ShowIndicators] = { { .i = 1 }, }, + [ShowIndicators] = { { .i = 0 }, }, [SiteQuirks] = { { .i = 1 }, }, [SmoothScrolling] = { { .i = 0 }, }, [SpellChecking] = { { .i = 0 }, }, @@ -155,7 +155,6 @@ static Key keys[] = { { MODKEY, GDK_KEY_m, spawn, BM_ADD("_SURF_URI") }, { 0, GDK_KEY_Escape, stop, { 0 } }, - { MODKEY, GDK_KEY_c, stop, { 0 } }, { MODKEY|GDK_SHIFT_MASK, GDK_KEY_r, reload, { .i = 1 } }, { MODKEY, GDK_KEY_r, reload, { .i = 0 } }, @@ -178,13 +177,13 @@ static Key keys[] = { { MODKEY, GDK_KEY_minus, zoom, { .i = -1 } }, { MODKEY, GDK_KEY_plus, zoom, { .i = +1 } }, - { MODKEY, GDK_KEY_p, clipboard, { .i = 1 } }, - { MODKEY, GDK_KEY_y, clipboard, { .i = 0 } }, + { MODKEY, GDK_KEY_v, clipboard, { .i = 1 } }, + { MODKEY, GDK_KEY_c, clipboard, { .i = 0 } }, { MODKEY, GDK_KEY_n, find, { .i = +1 } }, { MODKEY|GDK_SHIFT_MASK, GDK_KEY_n, find, { .i = -1 } }, - { MODKEY|GDK_SHIFT_MASK, GDK_KEY_p, print, { 0 } }, + { MODKEY, GDK_KEY_p, print, { 0 } }, { MODKEY, GDK_KEY_t, showcert, { 0 } }, { MODKEY|GDK_SHIFT_MASK, GDK_KEY_a, togglecookiepolicy, { 0 } },