drawio: fix startupWMClass

drawio seems to report "draw.io" as WM_CLASS, not "drawio". Having this
wrong means it does not get associated properly to the desktop entry and
is not grouped properly on the task bar.

(Checked using "xprop WM_CLASS" then clicking the drawio window.)
This commit is contained in:
nixdrin 2023-10-08 19:54:27 +02:00 committed by Alyssa Ross
parent 16ea502fbc
commit 0e8352388d

View File

@ -87,7 +87,7 @@ stdenv.mkDerivation rec {
comment = "draw.io desktop";
mimeTypes = [ "application/vnd.jgraph.mxfile" "application/vnd.visio" ];
categories = [ "Graphics" ];
startupWMClass = "drawio";
startupWMClass = "draw.io";
})
];