From 5344beda13b5b067565ad88d19584076a4fe290b Mon Sep 17 00:00:00 2001 From: lightly-toasted Date: Wed, 11 Feb 2026 11:48:48 +0900 Subject: [PATCH] feat(nixcord): switch from vesktop to equicord - Enable programs.nixcord.discord.equicord - Enable Equicord-only plugins - Remove vesktop from xdg default applications - Change class name in deafen mouse-action --- home/modules/graphical/mouse-actions/actions/deafen.nix | 2 +- home/modules/graphical/nixcord.nix | 7 +++++-- home/modules/graphical/xdg.nix | 1 - 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/home/modules/graphical/mouse-actions/actions/deafen.nix b/home/modules/graphical/mouse-actions/actions/deafen.nix index 8a32f3a..0c79c3a 100644 --- a/home/modules/graphical/mouse-actions/actions/deafen.nix +++ b/home/modules/graphical/mouse-actions/actions/deafen.nix @@ -2,6 +2,6 @@ { package = pkgs.writeShellScriptBin "deafen-action" '' - ${pkgs.hyprland}/bin/hyprctl dispatch sendshortcut CTRL+SHIFT, D, 'class:^(vesktop)$' + ${pkgs.hyprland}/bin/hyprctl dispatch sendshortcut CTRL+SHIFT, D, 'class:^(discord)$' ''; } diff --git a/home/modules/graphical/nixcord.nix b/home/modules/graphical/nixcord.nix index a8686f3..6b12788 100644 --- a/home/modules/graphical/nixcord.nix +++ b/home/modules/graphical/nixcord.nix @@ -1,8 +1,8 @@ { programs.nixcord = { enable = true; - discord.enable = false; - vesktop.enable = true; + discord.vencord.enable = false; + discord.equicord.enable = true; config = { plugins = { biggerStreamPreview.enable = true; @@ -27,6 +27,9 @@ webKeybinds.enable = true; webScreenShareFixes.enable = true; youtubeAdblock.enable = true; + limitMiddleClickPaste.enable = true; + mediaPlaybackSpeed.enable = true; + pinIcon.enable = true; }; }; }; diff --git a/home/modules/graphical/xdg.nix b/home/modules/graphical/xdg.nix index 8f94cb4..b70b0be 100644 --- a/home/modules/graphical/xdg.nix +++ b/home/modules/graphical/xdg.nix @@ -7,7 +7,6 @@ defaultApplications = { "x-scheme-handler/roblox-player" = "org.vinegarhq.Sober.desktop"; "x-scheme-handler/roblox-studio" = "org.vinegarhq.Vinegar.studio.desktop"; - "x-scheme-handler/discord" = "vesktop.desktop"; "x-scheme-handler/roblox-studio-auth" = "org.vinegarhq.Vinegar.studio.desktop"; }; };