https://github.com/bottlerocketlabs/sessionizer
switch tmux/zellij sessions easily - use like doom emacs projects
https://github.com/bottlerocketlabs/sessionizer
Last synced: about 2 months ago
JSON representation
switch tmux/zellij sessions easily - use like doom emacs projects
- Host: GitHub
- URL: https://github.com/bottlerocketlabs/sessionizer
- Owner: bottlerocketlabs
- License: mit
- Created: 2023-03-30T19:39:36.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2024-01-03T14:20:04.000Z (over 2 years ago)
- Last Synced: 2025-01-08T01:46:18.225Z (over 1 year ago)
- Language: Shell
- Size: 1.95 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# sessionizer
## Use sessionizer with zellij
start sessionizer as shell command
```yaml
# alacritty.yml
shell:
program: /usr/local/bin/zsh
args:
- -c
- /Users/you/.local/bin/sessionizer
```
detach from current session to select another
## Use sessionizer with tmux
run sessionizer within tmux session
```conf
# tmux.conf
bind-key p run-shell "tmux neww ~/.local/bin/sessionizer"
bind-key F1 run-shell "tmux neww ~/.local/bin/sessionizer somegitreponame"
```
## credit
* [https://github.com/ThePrimeagen/.dotfiles/blob/master/bin/.local/scripts/tmux-sessionizer]
* [https://github.com/zellij-org/zellij/issues/884#issuecomment-1250483279]