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