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;
isDefault = true;
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 = {
default = "DuckDuckGo";
force = true;
@ -58,6 +65,10 @@ in
"Nix Options"
"NixOS Wiki"
"ProtonDB"
"Modrinth Mods"
"Modrinth Modpacks"
"Modrinth Plugins"
"Modrinth Datapacks"
];
engines = {
"Bing".metaData.hidden = true;
@ -139,14 +150,39 @@ in
"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;
};
};
};