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 | |
| # Claude Session Manager for Git Worktrees (Zellij Edition) | |
| # Fork of tmux-based Claude Session Manager by nazq https://gist.github.com/nazq/3d179988627b15119944da573c91f1ab | |
| # Usage: cs [session_name] | |
| # See 'cs help' for details | |
| # Initialize Claude session if environment variable is set | |
| _cs_session_init() { | |
| if [[ -z "$CLAUDE_SESSION_ZELLIJ_INIT" ]]; then |
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
| os: linux | |
| dist: bionic | |
| language: c | |
| matrix: | |
| include: | |
| # Linux - amd64 | |
| - env: BRANCH=0.20.2 | |
| - env: BRANCH=1.0.8 | |
| - env: BRANCH=1.2.6 |