@delorenj/claude-notifications
Version:
Delightful Notification for Claude Code
16 lines (11 loc) • 414 B
JavaScript
const { spawn } = require('child_process');
const path = require('path');
console.log('🗑️ Cleaning up Claude Notifications...');
// Run the uninstaller
const uninstaller = spawn('node', [path.join(__dirname, 'bin', 'claude-notifications.js'), 'uninstall'], {
stdio: 'inherit'
});
uninstaller.on('close', (code) => {
console.log('👋 Thanks for using Claude Notifications!');
});