@narumitw/pi-caffeinate 0.1.17 → 0.1.19

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": "@narumitw/pi-caffeinate",
3
- "version": "0.1.17",
3
+ "version": "0.1.19",
4
4
  "description": "Pi extension that keeps the computer awake while the agent is running.",
5
5
  "type": "module",
6
6
  "license": "MIT",
package/src/caffeinate.ts CHANGED
@@ -284,12 +284,12 @@ function updateStatus(ctx: ExtensionContext) {
284
284
  }
285
285
 
286
286
  if (state.process) {
287
- ctx.ui.setStatus(STATUS_KEY, "caffeinate: awake");
287
+ ctx.ui.setStatus(STATUS_KEY, "💊 awake");
288
288
  return;
289
289
  }
290
290
 
291
291
  if (!state.available) {
292
- ctx.ui.setStatus(STATUS_KEY, "caffeinate: unavailable");
292
+ ctx.ui.setStatus(STATUS_KEY, "💊 unavailable");
293
293
  return;
294
294
  }
295
295