diff options
| author | miguel <miguel@localhost> | 2018-03-20 20:03:00 +0100 |
|---|---|---|
| committer | miguel <miguel@localhost> | 2018-03-20 20:03:00 +0100 |
| commit | 50d2341c2d13acbb610a8657b73a56db62a8eb62 (patch) | |
| tree | 0c6a90ce2034012825bf563891b34189784a82ef /config.h | |
| parent | 5389c0ccce709b101505725ac258b2fa74c52fee (diff) | |
disable the dark-theme by default AND add x for closing window
Diffstat (limited to 'config.h')
| -rw-r--r-- | config.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -48,7 +48,7 @@ static Parameter defconfig[ParameterLast] = { [SpellChecking] = { { .i = 0 }, }, [SpellLanguages] = { { .v = ((char *[]){ "en_US", NULL }) }, }, [StrictTLS] = { { .i = 1 }, }, - [Style] = { { .i = 1 }, }, + [Style] = { { .i = 0 }, }, [WebGL] = { { .i = 0 }, }, [ZoomLevel] = { { .f = 1.0 }, }, }; @@ -184,6 +184,7 @@ static Key keys[] = { { 0, GDK_KEY_q, quit, { 0 } }, + { 0, GDK_KEY_x, quit, { 0 } }, { MODKEY|GDK_SHIFT_MASK, GDK_KEY_p, print, { 0 } }, { MODKEY, GDK_KEY_t, showcert, { 0 } }, |
