mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-08-16 08:44:39 -05:00
refactor: firefox overhaul
This commit is contained in:
parent
9ea002b5a3
commit
a2bf6014ff
85 changed files with 1253 additions and 1133 deletions
101
home-manager/modules/firefox/config/bookmarks/socialMedia.nix
Normal file
101
home-manager/modules/firefox/config/bookmarks/socialMedia.nix
Normal file
|
@ -0,0 +1,101 @@
|
|||
let
|
||||
discordTags = ["disboard" "discord" "dis" "ds" "social"];
|
||||
youtubeTags = ["youtube" "you" "tube" "yt"];
|
||||
in {
|
||||
name = "Social Media";
|
||||
toolbar = false;
|
||||
bookmarks = [
|
||||
{
|
||||
name = "Disboard";
|
||||
url = "https://disboard.org";
|
||||
tags = discordTags;
|
||||
keyword = "Disboard";
|
||||
}
|
||||
{
|
||||
name = "Discord (Web Client)";
|
||||
url = "https://discord.com/channels/@me";
|
||||
tags = discordTags;
|
||||
keyword = "Discord";
|
||||
}
|
||||
{
|
||||
name = "Gmail";
|
||||
url = "https://mail.google.com/mail/u/0/#inbox";
|
||||
tags = ["gmail" "google" "mail" "gm" "email"];
|
||||
keyword = "Gmail";
|
||||
}
|
||||
{
|
||||
name = "Lemmy";
|
||||
url = "https://lemmy.world";
|
||||
tags = ["lemmy" "social"];
|
||||
keyword = "Lem";
|
||||
}
|
||||
{
|
||||
name = "OnlyFans";
|
||||
url = "https://onlyfans.com";
|
||||
tags = ["onlyfans" "only" "fans"];
|
||||
keyword = "Only";
|
||||
}
|
||||
{
|
||||
name = "Pixelfed";
|
||||
url = "https://pixelfed.social/i/web/profile/651714972141461392";
|
||||
tags = ["pixelfed" "pixel" "pi"];
|
||||
keyword = "Pix";
|
||||
}
|
||||
{
|
||||
name = "Proton Mail";
|
||||
url = "https://mail.proton.me/u/1/inbox";
|
||||
tags = ["proton" "mail" "pr" "email"];
|
||||
keyword = "Pro";
|
||||
}
|
||||
{
|
||||
name = "Proton Calendar";
|
||||
url = "https://calendar.proton.me";
|
||||
tags = ["proton" "calendar"];
|
||||
keyword = "Cal";
|
||||
}
|
||||
{
|
||||
name = "Proton VPN";
|
||||
url = "https://account.proton.me/u/0/vpn";
|
||||
tags = ["proton" "vpn"];
|
||||
keyword = "VPN";
|
||||
}
|
||||
{
|
||||
name = "Reddit";
|
||||
url = "https://www.reddit.com";
|
||||
tags = ["reddit" "social"];
|
||||
keyword = "Reddit";
|
||||
}
|
||||
{
|
||||
name = "StreamLabs";
|
||||
url = "https://streamlabs.com/dashboard";
|
||||
tags = ["streamlabs" "stream" "labs"];
|
||||
keyword = "Stream";
|
||||
}
|
||||
{
|
||||
name = "Tinder";
|
||||
url = "https://tinder.com/app/recs";
|
||||
tags = ["tinder" "dating" "booty"];
|
||||
keyword = "Tinder";
|
||||
}
|
||||
{
|
||||
name = "YouTube";
|
||||
url = "https://www.youtube.com";
|
||||
tags = youtubeTags;
|
||||
keyword = "You";
|
||||
}
|
||||
{
|
||||
name = "YouTube Studio";
|
||||
url = "https://studio.youtube.com/channel/UCy9yYcDx2XuVVgcWLJJDoxw";
|
||||
tags =
|
||||
["studio"]
|
||||
++ youtubeTags;
|
||||
keyword = "Studio";
|
||||
}
|
||||
{
|
||||
name = "X (Twitter)";
|
||||
url = "https://twitter.com/TheNutrivore";
|
||||
tags = ["twitter" "x" "social"];
|
||||
keyword = "Twitter";
|
||||
}
|
||||
];
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue