Commit 27d5a038801d

Vincent Demeester <vincent@sbr.pm>
2026-07-02 09:55:08
chore(claude): harden bell hook and use dark theme
The bell hook tolerates a missing tty instead of erroring, and the editor theme switched from light to dark.
1 parent 4a5ce8f
Changed files (1)
dots
config
dots/config/claude/settings.json
@@ -69,7 +69,7 @@
         "hooks": [
           {
             "type": "command",
-            "command": "printf '\\a' > /dev/tty"
+            "command": "printf '\\a' > /dev/tty 2>/dev/null || true"
           }
         ]
       }
@@ -79,7 +79,7 @@
         "hooks": [
           {
             "type": "command",
-            "command": "printf '\\a' > /dev/tty"
+            "command": "printf '\\a' > /dev/tty 2>/dev/null || true"
           }
         ]
       }
@@ -106,6 +106,7 @@
     "typescript-lsp@claude-plugins-official": true
   },
   "alwaysThinkingEnabled": true,
+  "theme": "dark",
   "mcpServers": {
     "github": {
       "command": "github-mcp-server",
@@ -132,6 +133,5 @@
     "/home/vincent/src/home",
     "/home/vincent/src/tekton-watcher",
     "/home/vincent/src/go-ci"
-  ],
-  "theme": "light"
+  ]
 }