1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-06-08 04:09:15 -04:00

fix: Display Configurator in Hyprland (#2506)

* fix: display configurator

* fix: replace
This commit is contained in:
Paul
2026-05-28 23:26:14 +02:00
committed by GitHub
parent 38176ab543
commit d819865853
2 changed files with 11 additions and 7 deletions
+1 -1
View File
@@ -58,7 +58,7 @@ Singleton {
function getOutputIdentifier(output, outputName) {
if (SettingsData.displayNameMode === "model" && output.make && output.model)
return "desc:" + output.make + " " + output.model + " " + (output.serial || "Unknown");
return ("desc:" + output.make + " " + output.model + " " + (output.serial || "Unknown")).replace(/,/g, "");
return outputName;
}