This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # ディスプレイ暗転検出用ログモニター | |
| # 次に暗転が起きたら、このスクリプトの出力を共有してください | |
| LOG_FILE="/tmp/display_dropout_$(date +%Y%m%d_%H%M%S).log" | |
| echo "=== Display Dropout Monitor ===" | tee "$LOG_FILE" | |
| echo "Started at: $(date)" | tee -a "$LOG_FILE" | |
| echo "Monitoring... (Ctrl+C to stop)" | tee -a "$LOG_FILE" | |
| echo "Log file: $LOG_FILE" | tee -a "$LOG_FILE" | |
| echo "---" | tee -a "$LOG_FILE" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| "hooks": { | |
| "PreToolUse": [ | |
| { | |
| "matcher": "ExitPlanMode", | |
| "hooks": [ | |
| { | |
| "type": "command", | |
| "command": "cmux markdown open \"$(ls -t ~/.claude/plans/*.md | head -1)\"", | |
| "timeout": 5, | |
| "statusMessage": "Preview plan.md in cmux" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| # ============================================================================= | |
| # difit-auto-detect.sh | |
| # Automatically detects git state and opens appropriate diff view | |
| # with difit in a cmux browser split pane. | |
| # | |
| # Dependencies: | |
| # - cmux https://cmux.app/ | |
| # - difit https://github.com/yoshiko-pg/difit | |
| # |