@rubytech/create-maxy 1.0.425 → 1.0.430

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rubytech/create-maxy",
3
- "version": "1.0.425",
3
+ "version": "1.0.430",
4
4
  "description": "Install Maxy — AI for Productive People",
5
5
  "bin": {
6
6
  "create-maxy": "./dist/index.js"
@@ -37,6 +37,11 @@ kill_stale() {
37
37
  pkill -f 'Xtigervnc :99' 2>/dev/null || true
38
38
  pkill -f 'websockify.*6080' 2>/dev/null || true
39
39
  rm -f /tmp/.X99-lock /tmp/.X11-unix/X99
40
+ # Clear Chromium profile locks left by unclean shutdown — without this,
41
+ # Chromium refuses to start after a service restart or power loss.
42
+ rm -f "${HOME}/.config/chromium/SingletonLock" \
43
+ "${HOME}/.config/chromium/SingletonCookie" \
44
+ "${HOME}/.config/chromium/SingletonSocket" 2>/dev/null || true
40
45
  sleep 0.3
41
46
  }
42
47