1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-01-28 07:22:50 -05:00

launcher v2: fix nvidia dgpu race condition

This commit is contained in:
bbedward
2026-01-23 14:15:46 -05:00
parent d013c3b718
commit b4ba2dac37
4 changed files with 21 additions and 11 deletions

View File

@@ -50,6 +50,13 @@ Rectangle {
result.push(selectedItem.actions[i]);
}
}
if (SessionService.nvidiaCommand) {
result.push({
name: I18n.tr("Launch on dGPU"),
icon: "memory",
action: "launch_dgpu"
});
}
}
return result;
}