mirror of
https://codeberg.org/leana8959/.files.git
synced 2025-12-06 06:39:14 +00:00
vanadium/firefox: simplify google search engine
The old customized config would trigger the bot detection all the time.
This commit is contained in:
parent
570e0124f0
commit
2d2cd5f270
1 changed files with 79 additions and 106 deletions
|
|
@ -1,7 +1,6 @@
|
|||
{
|
||||
pkgs,
|
||||
config,
|
||||
lib,
|
||||
...
|
||||
}: let
|
||||
inherit (pkgs) nur;
|
||||
|
|
@ -11,116 +10,90 @@ in {
|
|||
|
||||
policies = {
|
||||
SearchEngines = {
|
||||
Default = "Google en@en";
|
||||
Remove = ["Google"];
|
||||
Add =
|
||||
# Google specialized for each language x display language
|
||||
# reference: https://developers.google.com/custom-search/docs/xml_results?hl=zh-tw#advanced-search-query-parameters
|
||||
lib.mapCartesianProduct (
|
||||
{
|
||||
lr,
|
||||
hl,
|
||||
}: let
|
||||
lr' = lib.substring 0 2 (lib.removePrefix "lang_" lr);
|
||||
hl' = lib.substring 0 2 hl;
|
||||
in {
|
||||
Name = "Google ${lr'}@${hl'}";
|
||||
Alias =
|
||||
if lib.removePrefix "lang_" lr == hl
|
||||
then "@G" + lr'
|
||||
else "@G" + lr' + hl';
|
||||
Description = "Your data yum yum (but ${lr'} in ${hl'})";
|
||||
IconURL = "https://google.com/favicon.ico";
|
||||
SuggestURLTemplate = "https://suggestqueries.google.com/complete/search?q={searchTerms}&lr=${lr}&hl=${hl}";
|
||||
URLTemplate = "https://google.com/search?q={searchTerms}&lr=${lr}&hl=${hl}";
|
||||
}
|
||||
) {
|
||||
lr = ["lang_fr" "lang_en" "lang_zh-TW"];
|
||||
hl = ["fr" "en" "zh-TW"];
|
||||
Default = "Google";
|
||||
Add = [
|
||||
# Forges
|
||||
{
|
||||
Name = "GitHub";
|
||||
Alias = "@ggh";
|
||||
IconURL = "https://github.com/favicon.ico";
|
||||
Description = "Your code yum yum";
|
||||
URLTemplate = "https://github.com/search?q={searchTerms}&type=repositories";
|
||||
}
|
||||
{
|
||||
Name = "GitHub (Code Search)";
|
||||
Alias = "@gghc";
|
||||
IconURL = "https://github.com/favicon.ico";
|
||||
Description = "Your code yum yum";
|
||||
URLTemplate = "https://github.com/search?q={searchTerms}&type=code";
|
||||
}
|
||||
{
|
||||
Name = "Codeberg";
|
||||
Alias = "@gco";
|
||||
IconURL = "https://codeberg.org/favicon.ico";
|
||||
Description = "Software development, but free!";
|
||||
URLTemplate = "https://codeberg.org/explore/repos?q={searchTerms}";
|
||||
}
|
||||
{
|
||||
Name = "?C";
|
||||
Alias = "@gcc";
|
||||
IconURL = "https://git.confusedcompiler.org/favicon.ico";
|
||||
URLTemplate = "https://git.confusedcompiler.org/explore/repos?q={searchTerms}";
|
||||
}
|
||||
++ [
|
||||
# Forges
|
||||
{
|
||||
Name = "GitHub";
|
||||
Alias = "@ggh";
|
||||
IconURL = "https://github.com/favicon.ico";
|
||||
Description = "Your code yum yum";
|
||||
URLTemplate = "https://github.com/search?q={searchTerms}&type=repositories";
|
||||
}
|
||||
{
|
||||
Name = "GitHub (Code Search)";
|
||||
Alias = "@gghc";
|
||||
IconURL = "https://github.com/favicon.ico";
|
||||
Description = "Your code yum yum";
|
||||
URLTemplate = "https://github.com/search?q={searchTerms}&type=code";
|
||||
}
|
||||
{
|
||||
Name = "Codeberg";
|
||||
Alias = "@gco";
|
||||
IconURL = "https://codeberg.org/favicon.ico";
|
||||
Description = "Software development, but free!";
|
||||
URLTemplate = "https://codeberg.org/explore/repos?q={searchTerms}";
|
||||
}
|
||||
{
|
||||
Name = "?C";
|
||||
Alias = "@gcc";
|
||||
IconURL = "https://git.confusedcompiler.org/favicon.ico";
|
||||
URLTemplate = "https://git.confusedcompiler.org/explore/repos?q={searchTerms}";
|
||||
}
|
||||
|
||||
# Nix{,OS,pkgs}
|
||||
{
|
||||
Name = "NixOS Search (Package)";
|
||||
Alias = "@np";
|
||||
IconURL = "https://nixos.org/favicon.ico";
|
||||
Description = "Search in nixpkgs";
|
||||
URLTemplate = "https://search.nixos.org/packages?query={searchTerms}";
|
||||
}
|
||||
{
|
||||
Name = "NixOS Search (Options)";
|
||||
Alias = "@no";
|
||||
IconURL = "https://nixos.org/favicon.ico";
|
||||
Description = "Search in NixOS options";
|
||||
URLTemplate = "https://search.nixos.org/options?query={searchTerms}";
|
||||
}
|
||||
# Nix{,OS,pkgs}
|
||||
{
|
||||
Name = "NixOS Search (Package)";
|
||||
Alias = "@np";
|
||||
IconURL = "https://nixos.org/favicon.ico";
|
||||
Description = "Search in nixpkgs";
|
||||
URLTemplate = "https://search.nixos.org/packages?query={searchTerms}";
|
||||
}
|
||||
{
|
||||
Name = "NixOS Search (Options)";
|
||||
Alias = "@no";
|
||||
IconURL = "https://nixos.org/favicon.ico";
|
||||
Description = "Search in NixOS options";
|
||||
URLTemplate = "https://search.nixos.org/options?query={searchTerms}";
|
||||
}
|
||||
|
||||
# Haskell
|
||||
{
|
||||
Name = "Flora";
|
||||
Alias = "@hs";
|
||||
IconURL = "https://flora.pm/static/icons/favicon-32x32.png";
|
||||
URLTemplate = "https://flora.pm/search?q={searchTerms}";
|
||||
}
|
||||
# Haskell
|
||||
{
|
||||
Name = "Flora";
|
||||
Alias = "@hs";
|
||||
IconURL = "https://flora.pm/static/icons/favicon-32x32.png";
|
||||
URLTemplate = "https://flora.pm/search?q={searchTerms}";
|
||||
}
|
||||
|
||||
# Discourse
|
||||
{
|
||||
Name = "NixOS Discourse";
|
||||
Alias = "@nd";
|
||||
IconURL = "https://nixos.org/favicon.ico";
|
||||
URLTemplate = "https://discourse.nixos.org/search?q={searchTerms}";
|
||||
}
|
||||
{
|
||||
Name = "Framework Discourse";
|
||||
Alias = "@fd";
|
||||
IconURL = "https://frame.work/favicon.ico";
|
||||
URLTemplate = "https://community.frame.work/search?q={searchTerms}";
|
||||
}
|
||||
# Discourse
|
||||
{
|
||||
Name = "NixOS Discourse";
|
||||
Alias = "@nd";
|
||||
IconURL = "https://nixos.org/favicon.ico";
|
||||
URLTemplate = "https://discourse.nixos.org/search?q={searchTerms}";
|
||||
}
|
||||
{
|
||||
Name = "Framework Discourse";
|
||||
Alias = "@fd";
|
||||
IconURL = "https://frame.work/favicon.ico";
|
||||
URLTemplate = "https://community.frame.work/search?q={searchTerms}";
|
||||
}
|
||||
|
||||
# Misc
|
||||
{
|
||||
Name = "YouTube";
|
||||
Alias = "@yt";
|
||||
IconURL = "https://youtube.com/favicon.ico";
|
||||
SuggestURLTemplate = "http://suggestqueries.google.com/complete/search?q={searchTerms}&ds=yt";
|
||||
URLTemplate = "https://www.youtube.com/results?search_query={searchTerms}";
|
||||
}
|
||||
{
|
||||
Name = "Genius";
|
||||
Alias = "@geni";
|
||||
IconURL = "https://genius.com/favicon.ico";
|
||||
URLTemplate = "https://genius.com/search?q={searchTerms}";
|
||||
}
|
||||
];
|
||||
# Misc
|
||||
{
|
||||
Name = "YouTube";
|
||||
Alias = "@yt";
|
||||
IconURL = "https://youtube.com/favicon.ico";
|
||||
SuggestURLTemplate = "http://suggestqueries.google.com/complete/search?q={searchTerms}&ds=yt";
|
||||
URLTemplate = "https://www.youtube.com/results?search_query={searchTerms}";
|
||||
}
|
||||
{
|
||||
Name = "Genius";
|
||||
Alias = "@geni";
|
||||
IconURL = "https://genius.com/favicon.ico";
|
||||
URLTemplate = "https://genius.com/search?q={searchTerms}";
|
||||
}
|
||||
];
|
||||
};
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue