about summary refs log tree commit diff
path: root/pkgs/applications/networking/instant-messengers/element
diff options
context:
space:
mode:
authorMatthew Leach <dev@mattleach.net>2023-12-30 20:32:40 +0000
committerMatthew Leach <dev@mattleach.net>2023-12-30 20:32:40 +0000
commitef4e3baed089ae2d50c17ba6e2d4cc1c1605901b (patch)
treec978d10b1a056342fa2c7981d8ae3bd8c39c4508 /pkgs/applications/networking/instant-messengers/element
parentd6984a0f4381740de3b286e01e260f94d95b7fcb (diff)
element-desktop: capitalise startupWMClass desktop attribute
The `WMClass` for element-desktop is `Element`, however GNOME fails to
reconcile this with the desktop file as the `startupWMClass` attribute
of the desktop is `element`.

Capitalise the attribute which fixes the issue.
Diffstat (limited to 'pkgs/applications/networking/instant-messengers/element')
-rw-r--r--pkgs/applications/networking/instant-messengers/element/element-desktop.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/networking/instant-messengers/element/element-desktop.nix b/pkgs/applications/networking/instant-messengers/element/element-desktop.nix
index 4eb5707fe2560..46a7f821446c0 100644
--- a/pkgs/applications/networking/instant-messengers/element/element-desktop.nix
+++ b/pkgs/applications/networking/instant-messengers/element/element-desktop.nix
@@ -120,7 +120,7 @@ stdenv.mkDerivation (finalAttrs: builtins.removeAttrs pinData [ "hashes" ] // {
     genericName = "Matrix Client";
     comment = finalAttrs.meta.description;
     categories = [ "Network" "InstantMessaging" "Chat" ];
-    startupWMClass = "element";
+    startupWMClass = "Element";
     mimeTypes = [ "x-scheme-handler/element" ];
   };