mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-17 18:45:12 -05:00
feat: added bookmarks and searches
This commit is contained in:
parent
7a6685cbc2
commit
51b26e6749
13 changed files with 104 additions and 45 deletions
|
@ -1,7 +1,21 @@
|
|||
{
|
||||
{flake, ...}: let
|
||||
inherit (flake.config.services) instances;
|
||||
in {
|
||||
force = true;
|
||||
default = "Kagi";
|
||||
engines = {
|
||||
# Self-Hosted
|
||||
"${instances.jellyfin.label}" = {
|
||||
definedAliases = ["@jf"];
|
||||
icon = ./icons/jf.png;
|
||||
urls = [{template = "https://${instances.jellyfin.subdomain}.${instances.web.domains.url0}/web/#/search.html?query={searchTerms}";}];
|
||||
};
|
||||
"${instances.peertube.label}" = {
|
||||
definedAliases = ["@pt"];
|
||||
icon = ./icons/pt.png;
|
||||
urls = [{template = "https://${instances.peertube.subdomain}.${instances.web.domains.url1}/search?search={searchTerms}";}];
|
||||
};
|
||||
# General
|
||||
"AlternativeTo" = {
|
||||
definedAliases = ["@al"];
|
||||
icon = ./icons/al.png;
|
||||
|
@ -17,10 +31,20 @@
|
|||
icon = ./icons/br.png;
|
||||
urls = [{template = "https://search.brave.com/search?q={searchTerms}&source=web";}];
|
||||
};
|
||||
"Jellyfin" = {
|
||||
definedAliases = ["@jf"];
|
||||
icon = ./icons/ka.png;
|
||||
urls = [{template = "https://jellyfin.cloudbert.fun/web/#/search.html?query={searchTerms}";}];
|
||||
"Core Radio" = {
|
||||
definedAliases = ["@cr"];
|
||||
icon = ./icons/cr.png;
|
||||
urls = [{template = "https://coreradio.online/?do=search&subaction=search&story={searchTerms}";}];
|
||||
};
|
||||
"DNS Checker" = {
|
||||
definedAliases = ["@dn"];
|
||||
icon = ./icons/dn.png;
|
||||
urls = [{template = "https://dnschecker.org/#A/{searchTerms}";}];
|
||||
};
|
||||
"Door Dash" = {
|
||||
definedAliases = ["@do"];
|
||||
icon = ./icons/do.png;
|
||||
urls = [{template = "https://www.doordash.com/search/store/{searchTerms}";}];
|
||||
};
|
||||
"Hackage" = {
|
||||
definedAliases = ["@ha"];
|
||||
|
@ -42,6 +66,16 @@
|
|||
icon = ./icons/ho.png;
|
||||
urls = [{template = "https://www.stackage.org/lts-22.33/hoogle?q={searchTerms}";}];
|
||||
};
|
||||
"Kijiji" = {
|
||||
definedAliases = ["@ki"];
|
||||
icon = ./icons/ki.png;
|
||||
urls = [{template = "https://www.kijiji.ca/b-winnipeg/{searchTerms}";}];
|
||||
};
|
||||
"Memory Express" = {
|
||||
definedAliases = ["@me"];
|
||||
icon = ./icons/me.png;
|
||||
urls = [{template = "https://www.memoryexpress.com/Search/Products?Search={searchTerms}";}];
|
||||
};
|
||||
"Netflix" = {
|
||||
definedAliases = ["@ne"];
|
||||
icon = ./icons/ne.png;
|
||||
|
@ -72,21 +106,41 @@
|
|||
icon = ./icons/pi.png;
|
||||
urls = [{template = "https://thepiratebay.org/search.php?q={searchTerms}&all=on&search=Pirate+Search&page=0&orderby=";}];
|
||||
};
|
||||
"Proton DB" = {
|
||||
definedAliases = ["@pd"];
|
||||
icon = ./icons/pd.png;
|
||||
urls = [{template = "https://www.protondb.com/search?q={searchTerms}";}];
|
||||
};
|
||||
"Reddit" = {
|
||||
definedAliases = ["@re"];
|
||||
icon = ./icons/re.png;
|
||||
urls = [{template = "https://www.reddit.com/search/?q={searchTerms}";}];
|
||||
};
|
||||
"Rhyme Zone" = {
|
||||
definedAliases = ["@rz"];
|
||||
icon = ./icons/rz.png;
|
||||
urls = [{template = "https://www.rhymezone.com/r/rhyme.cgi?Word={searchTerms}&typeofrhyme=perfect&org1=syl&org2=l&org3=y";}];
|
||||
};
|
||||
"Sci-Hub" = {
|
||||
definedAliases = ["@sc"];
|
||||
icon = ./icons/sc.png;
|
||||
urls = [{template = "https://sci-hub.ee/{searchTerms}";}];
|
||||
};
|
||||
"Skip The Dishes" = {
|
||||
definedAliases = ["@sk"];
|
||||
icon = ./icons/sk.png;
|
||||
urls = [{template = "https://www.skipthedishes.com/winnipeg/items?search={searchTerms}";}];
|
||||
};
|
||||
"Stanford Encyclopedia of Philosophy" = {
|
||||
definedAliases = ["@ph"];
|
||||
icon = ./icons/ph.png;
|
||||
urls = [{template = "https://plato.stanford.edu/search/searcher.py?query={searchTerms}";}];
|
||||
};
|
||||
"Steam DB" = {
|
||||
definedAliases = ["@sd"];
|
||||
icon = ./icons/sd.png;
|
||||
urls = [{template = "https://steamdb.info/search/?a=all&q={searchTerms}";}];
|
||||
};
|
||||
"Urban Dictionary" = {
|
||||
definedAliases = ["@ur"];
|
||||
icon = ./icons/ur.png;
|
||||
|
@ -122,6 +176,11 @@
|
|||
icon = ./icons/tl.png;
|
||||
urls = [{template = "https://www.torrentleech.org/torrents/browse/index/query/{searchTerms}";}];
|
||||
};
|
||||
"X" = {
|
||||
definedAliases = ["@tw"];
|
||||
icon = ./icons/tw.png;
|
||||
urls = [{template = "https://x.com/search?q={searchTerms}";}];
|
||||
};
|
||||
"Amazon.ca".metaData.hidden = true;
|
||||
"Bing".metaData.hidden = true;
|
||||
"eBay".metaData.hidden = true;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue