diff --git a/config.h b/config.h index 5dae72c..d8aaca9 100644 --- a/config.h +++ b/config.h @@ -8,9 +8,9 @@ "enable-smooth-scrolling", false #define GTK "gtk-application-prefer-dark-theme", false, "gtk-enable-animations", false -#define ROSE_HOMEPAGE true -#define HOME ROSE_HOMEPAGE ? "file:///home/loki/Documents/core/software/fresh/C/rose-browser/rosenrot/user-scripts/ubuntu-20.04/rose-images/rose-homepage.png" : "https://lite.duckduckgo.com/html" +#define ROSE_HOMEPAGE false #define SEARCH "https://search.nunosempere.com/search?q=%s" // "https://lite.duckduckgo.com/html/?q=%s" +#define HOME ROSE_HOMEPAGE ? "file:///home/loki/Documents/core/software/fresh/C/rose-browser/rosenrot/user-scripts/ubuntu-20.04/rose-images/rose-homepage.png" : "https://search.nunosempere.com/" #define CACHE_DIR "/home/loki/.cache/rose" #define WIDTH 1920 diff --git a/plugins/style/style.c b/plugins/style/style.c index 347ee3f..9398649 100644 --- a/plugins/style/style.c +++ b/plugins/style/style.c @@ -1,7 +1,7 @@ #include #include #include -#define STYLE_N 1505 + 1 +#define STYLE_N 1610 + 1 void read_style_js(char* string) { diff --git a/plugins/style/style.h b/plugins/style/style.h index ab69b64..ce2a8a1 100644 --- a/plugins/style/style.h +++ b/plugins/style/style.h @@ -1,7 +1,7 @@ #ifndef STYLE #define STYLE -#define STYLE_N 1505 + 1 +#define STYLE_N 1610 + 1 void read_style_js(char* string); diff --git a/plugins/style/style.js b/plugins/style/style.js index 23f68a6..a0cd7c0 100644 --- a/plugins/style/style.js +++ b/plugins/style/style.js @@ -45,7 +45,13 @@ if (document.domain == "forum.nunosempere.com" ){ } ` } - +if (document.domain == "search.nunosempere.com" ){ + styles = ` + footer { + display: none; + } + ` +} if(styles != null){ var styleSheet = document.createElement('style') styleSheet.innerText = styles