Discord: Difference between revisions
Adds a warning to client mods and fixes minor formatting issues |
improve the troubleshooting format |
||
(4 intermediate revisions by 3 users not shown) | |||
Line 1: | Line 1: | ||
Discord is an instant messaging and VoIP application with lots of functionality. It provides a web interface, though most users would prefer to use a client for interoperability with their system. | |||
Discord is an instant messaging and VoIP application | |||
== Installation == | == Installation == | ||
{{Unfree}} | |||
< | === Official Clients === | ||
pkgs.discord | Nixpkgs provides all three of Discord's release channels, accessible as <code>pkgs.discord</code>, <code>pkgs.discord-ptb</code>, and <code>pkgs.discord-canary</code> respectively. Add any of the previous derivations to your package's configuration. For [[NixOS]] this will be in <code>environment.systemPackages</code> or <code>users.users.<name>.packages</code>.<syntaxhighlight lang="nixos"> | ||
pkgs.discord-ptb | # configuration.nix | ||
pkgs.discord-canary | { config, lib, pkgs, ... }: { | ||
</ | # This will install Discord PTB for all users of the system | ||
environment.systemPackages = with pkgs; [ | |||
discord-ptb | |||
]; | |||
# This installs Discord PTB only for the user "alice" | |||
users.users.alice.packages = with pkgs; [ | |||
discord-ptb | |||
]; | |||
} | |||
</syntaxhighlight> | </syntaxhighlight> | ||
=== | === Unofficial Clients === | ||
Nixpkgs also provides a vast variety of community developed/modded Discord clients, which can usually serve as drop-in replacements for the official discord client with an extended set of features. | |||
{{Warning|The usage of such client's goes against Discord's [https://discord.com/terms TOS], and can result in your account being permanently suspended from the platform!}} | |||
==== Legcord (formerly ArmCord)<ref>https://github.com/Legcord/Legcord</ref> ==== | |||
Lightweight, alternative desktop client with built-in modding extensibility. Nixpkgs provides this client via <code>pkgs.legcord</code>.<syntaxhighlight lang="nixos"> | |||
{ config, lib, pkgs, ... }: { | |||
<syntaxhighlight lang=" | environment.systemPackages = with pkgs; [ | ||
legcord | |||
]; | |||
} | |||
} | |||
</syntaxhighlight> | </syntaxhighlight> | ||
==== BetterDiscord<ref>https://betterdiscord.app/</ref> ==== | |||
Enhances Discord desktop app with new features. Nixpkgs provides the installer via <code>pkgs.betterdiscordctl</code>. This can be added to your configuration, though users may prefer to instead run it one-off via the [[Nix]] cli.<syntaxhighlight lang="bash"> | |||
$ nix-shell -p betterdiscordctl --command 'betterdiscordctl install' # nix-legacy | |||
$ nix run nixpkgs#betterdiscordctl -- install # nix3 | |||
$ nix-shell -p betterdiscordctl --command 'betterdiscordctl self-upgrade' # nix-legacy | |||
$ nix run nixpkgs#betterdiscordctl -- self-upgrade # nix3 | |||
</syntaxhighlight> | </syntaxhighlight> | ||
==== OpenAsar<ref>https://github.com/GooseMod/OpenAsar</ref> ==== | |||
Open-source alternative to Discord's <code>app.asar</code>. Nixpkgs provides this via <code>pkgs.openasar</code>, though this doesn't provide a usable client. Users should instead prefer overriding the official discord package and add <code>withOpenASAR = true</code>.<syntaxhighlight lang="nixos"> | |||
{ config, lib, pkgs, ... }: { | |||
== | environment.systemPackages = with pkgs; [ | ||
(discord.override { | |||
withOpenASAR = true; | |||
# withVencord = true; # can do this here too | |||
}) | |||
]; | |||
} | |||
= | |||
< | |||
<syntaxhighlight lang=" | |||
</syntaxhighlight> | </syntaxhighlight> | ||
==== Vencord<ref>https://vencord.dev/</ref> ==== | |||
The cutest Discord client mod. Nixpkgs provides their custom client [https://github.com/Vencord/Vesktop Vesktop] via<code>pkgs.vesktop</code>, or as an override for the official discord package via <code>withVencord = true</code>.<syntaxhighlight lang="nixos"> | |||
{ config, lib, pkgs, ... }: { | |||
environment.systemPackages = with pkgs; [ | |||
# vesktop # If you prefer this | |||
(discord.override { | |||
# withOpenASAR = true; # can do this here too | |||
withVencord = true; | |||
}) | |||
]; | |||
} | |||
</syntaxhighlight> | </syntaxhighlight> | ||
==== Webcord<ref>https://github.com/SpacingBat3/WebCord</ref> ==== | |||
Discord and [https://spacebar.chat/ Spacebar] client implemented without using the official Discord API. Nixpkgs provides this client via <code>pkgs.webcord</code>.<syntaxhighlight lang="nixos"> | |||
{ config, lib, pkgs, ... }: { | |||
environment.systemPackages = with pkgs; [ | |||
webcord | |||
]; | |||
} | |||
</syntaxhighlight> | </syntaxhighlight> | ||
=== | == Troubleshooting == | ||
=== Screensharing on Wayland === | |||
Discord's screen sharing capabilities have been broken for [https://support.discord.com/hc/en-us/community/posts/360047644231-Native-Wayland-Support?page=2#comments 5 years with no official fix]. The most consistent fix involves using the web version of Discord alongside a browser that supports screen sharing in Wayland, like [[Firefox]]. Alternatively, you can use an [[Discord#Unofficial Clients|unofficial client]] like ''Webcord'' or ''Vesktop'', both of which have fixed this issue in their own ways. | |||
{{Note|Remember to configure an [https://wiki.archlinux.org/title/XDG_Desktop_Portal#List_of_backends_and_interfaces XDG Desktop Portal] with screen cast capabilities!}} | |||
This | === Notifications causing crashes === | ||
<syntaxhighlight lang=" | Discord will crash if there is no compatible notification daemon running. This issue is only prevalent in custom desktop environments, such as [[Sway]] or [[Hyprland]]. Comprehensive documentation usually exists for most window managers/compositors and can be found on their respective wikis. Nixpkgs provides a few standalone notification daemons such as <code>pkgs.dunst</code> and <code>pkgs.mako</code>. You may optionally use a notification daemon from a larger DE, such as <code>pkgs.lxqt.lxqt-notificationd</code>, however it is unclear how effective these will be outside of their normal environment.<syntaxhighlight lang="nixos"> | ||
{ config, lib, pkgs, ... }: { | |||
# You will need to add a call for the daemon to actually function. | |||
# This is usually done within the configuration of your respective WM. | |||
# See the official wiki/documentation for your WM for more info. | |||
environment.systemPackages = with pkgs; [ | |||
mako | |||
]; | |||
} | } | ||
</syntaxhighlight> | </syntaxhighlight> | ||
=== "Must be your lucky day" popup === | |||
< | Although Nixpkgs is usually very fast with updates (if you use ''nixos-unstable''), you may still run into this issue intermittently. You may override the discord package with a more up-to-date source, or you may disable this popup entirely by adding <code>"SKIP_HOST_UPDATE": true</code> to <code>~/.config/discord/settings.json</code>. | ||
{{File|~/.config/discord/settings.json|json| | |||
</ | { | ||
"SKIP_HOST_UPDATE": true | |||
<nowiki>}</nowiki> | |||
}} | |||
=== Krisp noise suppression === | === Krisp noise suppression === | ||
Line 135: | Line 111: | ||
(pkgs.discord.override { withTTS = true; }) | (pkgs.discord.override { withTTS = true; }) | ||
</syntaxhighlight> | </syntaxhighlight> | ||
[[Category:Applications]] | [[Category:Applications]] | ||
[[Category:Gaming]] | [[Category:Gaming]] |
Latest revision as of 00:33, 18 October 2024
Discord is an instant messaging and VoIP application with lots of functionality. It provides a web interface, though most users would prefer to use a client for interoperability with their system.
Installation
Official Clients
Nixpkgs provides all three of Discord's release channels, accessible as pkgs.discord
, pkgs.discord-ptb
, and pkgs.discord-canary
respectively. Add any of the previous derivations to your package's configuration. For NixOS this will be in environment.systemPackages
or users.users.<name>.packages
.
# configuration.nix
{ config, lib, pkgs, ... }: {
# This will install Discord PTB for all users of the system
environment.systemPackages = with pkgs; [
discord-ptb
];
# This installs Discord PTB only for the user "alice"
users.users.alice.packages = with pkgs; [
discord-ptb
];
}
Unofficial Clients
Nixpkgs also provides a vast variety of community developed/modded Discord clients, which can usually serve as drop-in replacements for the official discord client with an extended set of features.
Legcord (formerly ArmCord)[1]
Lightweight, alternative desktop client with built-in modding extensibility. Nixpkgs provides this client via pkgs.legcord
.
{ config, lib, pkgs, ... }: {
environment.systemPackages = with pkgs; [
legcord
];
}
BetterDiscord[2]
Enhances Discord desktop app with new features. Nixpkgs provides the installer via pkgs.betterdiscordctl
. This can be added to your configuration, though users may prefer to instead run it one-off via the Nix cli.
$ nix-shell -p betterdiscordctl --command 'betterdiscordctl install' # nix-legacy
$ nix run nixpkgs#betterdiscordctl -- install # nix3
$ nix-shell -p betterdiscordctl --command 'betterdiscordctl self-upgrade' # nix-legacy
$ nix run nixpkgs#betterdiscordctl -- self-upgrade # nix3
OpenAsar[3]
Open-source alternative to Discord's app.asar
. Nixpkgs provides this via pkgs.openasar
, though this doesn't provide a usable client. Users should instead prefer overriding the official discord package and add withOpenASAR = true
.
{ config, lib, pkgs, ... }: {
environment.systemPackages = with pkgs; [
(discord.override {
withOpenASAR = true;
# withVencord = true; # can do this here too
})
];
}
Vencord[4]
The cutest Discord client mod. Nixpkgs provides their custom client Vesktop viapkgs.vesktop
, or as an override for the official discord package via withVencord = true
.
{ config, lib, pkgs, ... }: {
environment.systemPackages = with pkgs; [
# vesktop # If you prefer this
(discord.override {
# withOpenASAR = true; # can do this here too
withVencord = true;
})
];
}
Webcord[5]
Discord and Spacebar client implemented without using the official Discord API. Nixpkgs provides this client via pkgs.webcord
.
{ config, lib, pkgs, ... }: {
environment.systemPackages = with pkgs; [
webcord
];
}
Troubleshooting
Screensharing on Wayland
Discord's screen sharing capabilities have been broken for 5 years with no official fix. The most consistent fix involves using the web version of Discord alongside a browser that supports screen sharing in Wayland, like Firefox. Alternatively, you can use an unofficial client like Webcord or Vesktop, both of which have fixed this issue in their own ways.
Notifications causing crashes
Discord will crash if there is no compatible notification daemon running. This issue is only prevalent in custom desktop environments, such as Sway or Hyprland. Comprehensive documentation usually exists for most window managers/compositors and can be found on their respective wikis. Nixpkgs provides a few standalone notification daemons such as pkgs.dunst
and pkgs.mako
. You may optionally use a notification daemon from a larger DE, such as pkgs.lxqt.lxqt-notificationd
, however it is unclear how effective these will be outside of their normal environment.
{ config, lib, pkgs, ... }: {
# You will need to add a call for the daemon to actually function.
# This is usually done within the configuration of your respective WM.
# See the official wiki/documentation for your WM for more info.
environment.systemPackages = with pkgs; [
mako
];
}
"Must be your lucky day" popup
Although Nixpkgs is usually very fast with updates (if you use nixos-unstable), you may still run into this issue intermittently. You may override the discord package with a more up-to-date source, or you may disable this popup entirely by adding "SKIP_HOST_UPDATE": true
to ~/.config/discord/settings.json
.
~/.config/discord/settings.json
{
"SKIP_HOST_UPDATE": true
}
Krisp noise suppression
The Krisp noise suppression option will not work on NixOS because the Discord binary is patched before installation, and there is a DRM-style integrity check in the Krisp binary which prevents Krisp from working if the Discord binary is modified. See https://github.com/NixOS/nixpkgs/issues/195512 for details.
Text-to-Speech
TTS is disabled by default; you may enable it via an override:
(pkgs.discord.override { withTTS = true; })