tweak: savepoint

This commit is contained in:
NunoSempere 2023-04-29 18:33:09 -04:00
parent 52aacc6dac
commit 0ba58087e0
4 changed files with 11 additions and 5 deletions

View File

@ -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

View File

@ -1,7 +1,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define STYLE_N 1505 + 1
#define STYLE_N 1610 + 1
void read_style_js(char* string)
{

View File

@ -1,7 +1,7 @@
#ifndef STYLE
#define STYLE
#define STYLE_N 1505 + 1
#define STYLE_N 1610 + 1
void read_style_js(char* string);

View File

@ -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