diff options
author | Enno Boland (tox) <tox@s01.de> | 2009-09-07 11:02:26 +0200 |
---|---|---|
committer | Enno Boland (tox) <tox@s01.de> | 2009-09-07 11:02:26 +0200 |
commit | 03f0a3baf5a844dc44aa5c145f1dd5d12c56ad07 (patch) | |
tree | 9d5d52c0f1122da1d146ef578ac5b8a534b6a8f9 /config.h | |
parent | 91ca224af21a008512081a7868ada2479d5d9231 (diff) | |
download | surf-03f0a3baf5a844dc44aa5c145f1dd5d12c56ad07.tar.gz surf-03f0a3baf5a844dc44aa5c145f1dd5d12c56ad07.tar.bz2 surf-03f0a3baf5a844dc44aa5c145f1dd5d12c56ad07.zip |
moving color definitions to config.h
Diffstat (limited to 'config.h')
-rw-r--r-- | config.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -1,4 +1,6 @@ /* modifier 0 means no modifier */ +static GdkColor progress = { 65535,65535,0,0 }; +static GdkColor progress_trust = { 65535,0,65535,0 }; static Key keys[] = { /* modifier keyval function arg Focus */ { 0, GDK_Escape, hidesearch, {0}, ALWAYS }, @@ -25,3 +27,4 @@ static Key keys[] = { { GDK_CONTROL_MASK, GDK_h, navigate, {.i = -1}, BROWSER }, { 0, GDK_Escape, stop, {0}, BROWSER }, }; + |