tree style tabs

This commit is contained in:
Charlie Root 2024-08-05 19:29:19 +02:00
commit b1eecce815

View file

@ -15,6 +15,7 @@ in {
programs.schizofox = { programs.schizofox = {
enable = true; enable = true;
theme = { theme = {
colors = { colors = {
background-darker = "000000"; background-darker = "000000";
@ -23,7 +24,22 @@ in {
}; };
font = "ComicShannsMono Nerd Font"; font = "ComicShannsMono Nerd Font";
extraUserChrome = ''
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* set default namespace to XUL */
/*
* Hide tab bar, navigation bar and scrollbars
* !important may be added to force override, but not necessary
* #content is not necessary to hide scroll bars
*/
#TabsToolbar {visibility: collapse;}
/* #navigator-toolbox {visibility: collapse;} */
browser {margin-right: -14px; margin-bottom: -14px;}
'';
}; };
search = { search = {
defaultSearchEngine = "DuckDuckGo"; defaultSearchEngine = "DuckDuckGo";
removeEngines = ["Google" "Bing" "Amazon.com" "eBay" "Twitter" "Wikipedia"]; removeEngines = ["Google" "Bing" "Amazon.com" "eBay" "Twitter" "Wikipedia"];
@ -87,7 +103,7 @@ in {
]; ];
}; };
extensions = { extensions = {
simplefox.enable = true; # simplefox.enable = true;
darkreader.enable = true; darkreader.enable = true;
extraExtensions = let extraExtensions = let
mkUrl = name: "https://addons.mozilla.org/firefox/downloads/latest/${name}/latest.xpi"; mkUrl = name: "https://addons.mozilla.org/firefox/downloads/latest/${name}/latest.xpi";