@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 +1 -1
- package/src/caffeinate.ts +2 -2
package/package.json
CHANGED
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, "
|
|
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, "
|
|
292
|
+
ctx.ui.setStatus(STATUS_KEY, "💊 unavailable");
|
|
293
293
|
return;
|
|
294
294
|
}
|
|
295
295
|
|