update qutebrowser
This commit is contained in:
parent
c66409ee13
commit
1c4f4807ff
|
@ -47,10 +47,14 @@ in {
|
||||||
|
|
||||||
};
|
};
|
||||||
settings = {
|
settings = {
|
||||||
|
session.lazy_restore = true;
|
||||||
|
auto_save.session = true;
|
||||||
|
|
||||||
hints = {
|
hints = {
|
||||||
chars = key.hints;
|
chars = key.hints;
|
||||||
border = "2px solid ${accent.color}";
|
border = "2px solid ${accent.color}";
|
||||||
};
|
};
|
||||||
|
content.user_stylesheets = "style.css";
|
||||||
|
|
||||||
content.blocking.adblock.lists = [
|
content.blocking.adblock.lists = [
|
||||||
"https://easylist.to/easylist/easylist.txt"
|
"https://easylist.to/easylist/easylist.txt"
|
||||||
|
@ -302,6 +306,48 @@ in {
|
||||||
|
|
||||||
main.observe(document.getElementsByClassName("video-ads ytp-ad-module").item(0), {attributes: true, characterData: true, childList: true})
|
main.observe(document.getElementsByClassName("video-ads ytp-ad-module").item(0), {attributes: true, characterData: true, childList: true})
|
||||||
'';
|
'';
|
||||||
|
".config/qutebrowser/style.css".text = ''
|
||||||
|
${lib.optionalString (color.type == "dark") ''
|
||||||
|
button,
|
||||||
|
input[type="button"] {
|
||||||
|
color: unset;
|
||||||
|
background-color: unset;
|
||||||
|
}
|
||||||
|
|
||||||
|
.bg-gradient-to-b,
|
||||||
|
body {
|
||||||
|
background-image: none !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
/***************************
|
||||||
|
* Remove borked ellements *
|
||||||
|
***************************/
|
||||||
|
|
||||||
|
.search-filters-wrap:before, .search-filters-wrap:after {
|
||||||
|
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
''}
|
||||||
|
|
||||||
|
/*****************
|
||||||
|
* Hide some ads *
|
||||||
|
*****************/
|
||||||
|
|
||||||
|
/*Reddit*/
|
||||||
|
#sr-header-area .redesign-beta-optin,
|
||||||
|
.link.promotedlink.promoted,
|
||||||
|
.spacer:empty,
|
||||||
|
.spacer .premium-banner-outer,
|
||||||
|
.ad-container,
|
||||||
|
|
||||||
|
/*Youtube*/
|
||||||
|
div#masthead-ad ,
|
||||||
|
.video-ads,
|
||||||
|
#player-ads,
|
||||||
|
ytd-popup-container {
|
||||||
|
display: none !important;
|
||||||
|
}
|
||||||
|
'';
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue