Compare commits
2 commits
eebdec5ca1
...
e282598214
Author | SHA1 | Date | |
---|---|---|---|
e282598214 | |||
a945920f93 |
1 changed files with 43 additions and 7 deletions
|
@ -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,15 +150,40 @@ 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;
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Reference in a new issue