mirror of
https://git.outfoxxed.me/quickshell/quickshell.git
synced 2026-04-10 06:11:54 +10:00
launch: add ability to override AppId via pragma or QS_APP_ID
This commit is contained in:
parent
eb6eaf59c7
commit
77c04a9447
5 changed files with 16 additions and 6 deletions
|
|
@ -230,7 +230,9 @@ void qsCheckCrash(int argc, char** argv) {
|
|||
);
|
||||
|
||||
auto app = QApplication(argc, argv);
|
||||
QApplication::setDesktopFileName("org.quickshell");
|
||||
auto desktopId =
|
||||
info.instance.appId.isEmpty() ? QStringLiteral("org.quickshell") : info.instance.appId;
|
||||
QApplication::setDesktopFileName(desktopId);
|
||||
|
||||
auto crashDir = QsPaths::crashDir(info.instance.instanceId);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue