aboutsummaryrefslogtreecommitdiff
path: root/rose.c
diff options
context:
space:
mode:
authorNunoSempere <nuno.sempere@protonmail.com>2024-02-11 16:58:35 +0100
committerNunoSempere <nuno.sempere@protonmail.com>2024-02-11 16:58:35 +0100
commit5e42ab4b00f3625b902cc3bfa4ecfbc30bfcaa9f (patch)
treeb73db2e4096cc4d9f2444aee649102da435bcca8 /rose.c
parentcdf35fa832de83dd2db65b9d8f38600510352389 (diff)
move plugins code to config.h
Diffstat (limited to 'rose.c')
-rw-r--r--rose.c18
1 files changed, 2 insertions, 16 deletions
diff --git a/rose.c b/rose.c
index 4287994..3bc03d0 100644
--- a/rose.c
+++ b/rose.c
@@ -19,24 +19,10 @@ static struct {
enum { _SEARCH, _FIND, _HIDDEN } entry_mode;
} bar;
-/* Plugins */
-#define LIBRE_REDIRECT_ENABLED true
-#define READABILITY_ENABLED true
-#define CUSTOM_STYLE_ENABLED true
-#define CUSTOM_USER_AGENT false
+// Number of open tabs
static int num_tabs = 0;
-/*
-To disable plugins:
-1. set their corresponding variable to false
-2. you could also look into this file at commit afe93518a for an approach using stand-in code.
-3. recompile
-
-To remove plugins completely;
-1. Remove the corresponding code in this file by looking for the variables above.
-2. Remove PLUGIN and $(PLUGIN) from the makefiel
-3. Recompile
-*/
+/* */
WebKitWebView* webview_new()
{
char* style;