@mingxy/opencode-mascot 0.4.25 → 0.4.26

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": "@mingxy/opencode-mascot",
3
- "version": "0.4.25",
3
+ "version": "0.4.26",
4
4
  "description": "OpenCode TUI mascot plugin framework - customizable ASCII mascots for your terminal",
5
5
  "author": "mingxy",
6
6
  "license": "MIT",
@@ -355,10 +355,10 @@ export function createAnimatedRenderer(pack: MascotPack): {
355
355
 
356
356
  if (s === "sleeping") {
357
357
  let phase = 1;
358
- setZzz("");
358
+ setZzz("zᶻ...");
359
359
  zzzTimer = setInterval(() => {
360
360
  phase = (phase % 3) + 1;
361
- setZzz("ᶻ".repeat(phase));
361
+ setZzz("z" + "ᶻ".repeat(phase) + "...");
362
362
  }, 1500);
363
363
  } else {
364
364
  if (zzzTimer) { clearInterval(zzzTimer); zzzTimer = null; }