Compare commits

..

2 commits

Author SHA1 Message Date
e282598214
add modrinth search engines 2024-12-13 09:01:44 -05:00
a945920f93
move settings above search settings 2024-12-13 08:53:24 -05:00

View file

@ -48,6 +48,13 @@ in
id = 0; id = 0;
isDefault = true; isDefault = true;
extensions = extensions; extensions = extensions;
settings = {
"extensions.autoDisableScopes" = 0;
"floorp.browser.sidebar.enable" = false;
"floorp.browser.sidebar.useIconProvider" = "duckduckgo";
"floorp.browser.sidebar2.hide.to.unload.panel.enabled" = true;
"floorp.extensions.allowPrivateBrowsingByDefault.is.enabled" = true;
};
search = { search = {
default = "DuckDuckGo"; default = "DuckDuckGo";
force = true; force = true;
@ -58,6 +65,10 @@ in
"Nix Options" "Nix Options"
"NixOS Wiki" "NixOS Wiki"
"ProtonDB" "ProtonDB"
"Modrinth Mods"
"Modrinth Modpacks"
"Modrinth Plugins"
"Modrinth Datapacks"
]; ];
engines = { engines = {
"Bing".metaData.hidden = true; "Bing".metaData.hidden = true;
@ -139,14 +150,39 @@ in
"proton" "proton"
]; ];
}; };
"Modrinth Mods" = {
urls = [ { template = "https://modrinth.com/mod/{searchTerms}"; } ];
iconUpdateURL = "https://modrinth.com/favicon.ico";
updateInterval = 24 * 60 * 60 * 1000; # every day
definedAliases = [
"@mm"
];
};
"Modrinth Modpacks" = {
urls = [ { template = "https://modrinth.com/modpack/{searchTerms}"; } ];
iconUpdateURL = "https://modrinth.com/favicon.ico";
updateInterval = 24 * 60 * 60 * 1000; # every day
definedAliases = [
"@mmp"
];
};
"Modrinth Plugins" = {
urls = [ { template = "https://modrinth.com/plugin/{searchTerms}"; } ];
iconUpdateURL = "https://modrinth.com/favicon.ico";
updateInterval = 24 * 60 * 60 * 1000; # every day
definedAliases = [
"@mp"
];
};
"Modrinth Datapacks" = {
urls = [ { template = "https://modrinth.com/datapack/{searchTerms}"; } ];
iconUpdateURL = "https://modrinth.com/favicon.ico";
updateInterval = 24 * 60 * 60 * 1000; # every day
definedAliases = [
"@md"
];
}; };
}; };
settings = {
"extensions.autoDisableScopes" = 0;
"floorp.browser.sidebar.enable" = false;
"floorp.browser.sidebar.useIconProvider" = "duckduckgo";
"floorp.browser.sidebar2.hide.to.unload.panel.enabled" = true;
"floorp.extensions.allowPrivateBrowsingByDefault.is.enabled" = true;
}; };
}; };
}; };