8 lines
245 B
Bash
Executable File
8 lines
245 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Display macOS notification using osascript
|
|
osascript -e 'display notification "タスクが完了しました" with title "Claude Code" subtitle "処理終了" sound name "Hero"'
|
|
|
|
# Exit successfully (don't block the stop)
|
|
exit 0
|