claude-code-sounds 1.4.0 → 1.4.1
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/bin/cli.js +2 -1
- package/package.json +1 -1
package/bin/cli.js
CHANGED
|
@@ -621,7 +621,7 @@ async function quickInstall(theme) {
|
|
|
621
621
|
writeInstalled({ themes: [theme.name], mode: "quick" });
|
|
622
622
|
installHooksConfig();
|
|
623
623
|
|
|
624
|
-
p.log.success(`Installed ${total} sounds across ${categories.length} hooks.`);
|
|
624
|
+
p.log.success(`Installed ${color.bold(theme.display)} — ${total} sounds across ${categories.length} hooks.`);
|
|
625
625
|
}
|
|
626
626
|
|
|
627
627
|
// ─── Custom Install ──────────────────────────────────────────────────────────
|
|
@@ -974,6 +974,7 @@ if (flags.has("--help") || flags.has("-h")) {
|
|
|
974
974
|
}
|
|
975
975
|
|
|
976
976
|
await quickInstall(theme);
|
|
977
|
+
p.log.info(`To customize which sounds play on each hook, run:\n${color.gray(p.S_BAR)}\n${color.gray(p.S_BAR)} ${color.cyan("npx claude-code-sounds")}\n${color.gray(p.S_BAR)}\n${color.gray(p.S_BAR)} and choose ${color.bold("Modify install")}.`);
|
|
977
978
|
p.outro("Start a new Claude Code session to hear it.");
|
|
978
979
|
})().catch((err) => {
|
|
979
980
|
killPreview();
|