1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-04-04 12:52:06 -04:00

hyprland: add serial to output model generator

This commit is contained in:
bbedward
2026-02-19 09:22:10 -05:00
parent 77889ce1c6
commit a9cc58fc28
2 changed files with 2 additions and 2 deletions

View File

@@ -1061,7 +1061,7 @@ Singleton {
function getHyprlandOutputIdentifier(output, outputName) {
if (SettingsData.displayNameMode === "model" && output?.make && output?.model)
return "desc:" + output.make + " " + output.model;
return "desc:" + output.make + " " + output.model + " " + (output?.serial || "Unknown");
return outputName;
}