Skip to content

Commit 7b2ea53

Browse files
grimmerkclaude
andcommitted
fix: remove grep -v node from legacy fallback (#95)
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 1cb5958 commit 7b2ea53

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
- Feat: session status hooks — colored dots for working (pulse) / idle / needs-attention (blink)
66
- Feat: auto-install Claude Code hooks for session status detection (toggle in Settings → Sessions)
7+
- Fix: legacy fallback detection now supports npm-installed Claude Code (#95)
78
- Known: if hooks are removed externally while CodeV is running, restart CodeV to recover (#93)
89

910
## 1.0.61

src/claude-session-utility.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -685,7 +685,7 @@ const detectActiveSessionsLegacy = async (activeMap: Map<string, number>): Promi
685685
const claimedSessionIds = new Set<string>();
686686

687687
const output = await execPromise(
688-
'ps aux | grep -E "[c]laude" | grep -v "Claude.app" | grep -v "claude-history" | grep -v "ClaudeHistory" | grep -v "node"'
688+
'ps aux | grep -E "[c]laude" | grep -v "Claude.app" | grep -v "claude-history" | grep -v "ClaudeHistory"'
689689
);
690690
if (!output) return;
691691

0 commit comments

Comments
 (0)