]> git.armaanb.net Git - chorizo.git/blob - config.h
840b0bc829077d46456b13dac11017e7806275f2
[chorizo.git] / config.h
1 #ifndef CONFIG_H
2 #define CONFIG_H
3
4 #define VERSION "1.1.0"
5 gboolean cfg_js_default = TRUE;
6 //Should JavaScript be enabled by default
7 WebKitCookieAcceptPolicy cfg_cookie_policy = WEBKIT_COOKIE_POLICY_ACCEPT_ALWAYS;
8 //Cookie policy
9 gchar *cfg_home_uri = NULL;
10 //Default URI
11 int cfg_scroll_lines = 3;
12 //Number of lines to scroll at a time
13 gchar *cfg_search_engine = "https://searx.be/search?q=";
14 //Search engine
15 int cfg_max_tabs_closed = 16;
16 //Tab width in chars
17 int cfg_tab_width = 15;
18 #endif