]> git.armaanb.net Git - chorizo.git/blob - config.h
draft 8
[chorizo.git] / config.h
1 #define VERSION "1.1.0"
2
3 // Should JavaScript be enabled by default
4 static gboolean cfg_js_default = TRUE;
5
6 // Cookie policy
7 static WebKitCookieAcceptPolicy cfg_cookie_policy =
8         WEBKIT_COOKIE_POLICY_ACCEPT_ALWAYS;
9
10 // Default URI
11 static gchar *cfg_home_uri = NULL;
12
13 // Number of lines to scroll at a time
14 static int cfg_scroll_lines = 3;
15
16 // Search engine
17 static gchar *cfg_search_engine = "https://searx.be/search?q=";
18
19 // Max number of closed tabs
20 static size_t cfg_max_tabs_closed = 16;
21
22 // Tab width in chars
23 static int cfg_tab_width = 15;
24
25 // isearch options
26 static WebKitFindOptions cfg_isearch_options =
27         WEBKIT_FIND_OPTIONS_CASE_INSENSITIVE | WEBKIT_FIND_OPTIONS_WRAP_AROUND;