1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-01-29 16:02:51 -05:00

enable changelog

This commit is contained in:
bbedward
2026-01-12 09:46:50 -05:00
parent 49b322582d
commit 022b4b4bb3
3 changed files with 31 additions and 8 deletions

View File

@@ -74,12 +74,10 @@ Singleton {
stdout: SplitParser {
onRead: data => {
const result = data.trim();
root.checkComplete = true;
if (result === "first") {
root.isFirstLaunch = true;
console.info("FirstLaunchService: First launch detected, greeter will be shown");
root.greeterRequested();
} else if (result === "existing_user") {
root.isFirstLaunch = false;
console.info("FirstLaunchService: Existing user detected, silently creating marker");
@@ -87,6 +85,11 @@ Singleton {
} else {
root.isFirstLaunch = false;
}
root.checkComplete = true;
if (root.isFirstLaunch)
root.greeterRequested();
}
}
}