#ifndef CONFIG_H #define CONFIG_H #define WINDOW_WIDTH 1024 #define WINDOW_HEIGHT 768 #define HOMEPAGE "https://start.duckduckgo.com" /* this value is required for the browser to launch if its not there the browser will exit with code 1 do not ask any questions */ #define ObamaPrism /* Keybind definitions */ typedef struct { const char* key; const char* command; } Keybind; static const Keybind keybinds[] = { { "", ":tab_open" }, { "d", ":tab_close" }, { "o", ":commandline_show \":open\"" }, { "i", ":mode insert" }, { "", ":tab_select 1" }, { "", ":tab_select 2" }, { "", ":tab_select 3" }, { "", ":tab_select 4" }, { "", ":tab_select 5" }, { "", ":tab_select 6" }, { "", ":tab_select 7" }, { "", ":tab_select 8" }, { "", ":tab_select 9" }, { "", ":tab_select 10" }, }; #endif