-
Notifications
You must be signed in to change notification settings - Fork 1
Zellij improvements: zjstatus redesign, autolock, container integration #11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
e822e81
Improve zellij: zjstatus bar, autolock, smart frames, lazygit, zsm
tyvsmith c2eda46
zellij modern
tyvsmith c5ac5c7
Redesign zjstatus: Catppuccin Mocha pills with keybinding hints bar
tyvsmith c116168
Fix pane borders and transparent status bar background
tyvsmith abb1e7c
Split keybinding hints bar and add dotted border under top bar
tyvsmith 9307526
Add custom catppuccin-mocha-subtle theme with dim pane borders
tyvsmith 55ae448
Add right-side status pills, subtle theme, autolock toggle, layout po…
tyvsmith c4d6e52
Add zellij future changes watchlist doc
tyvsmith 3d43213
Remove CPU load and datetime pills from status bar
tyvsmith File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,44 @@ | ||
| # Zellij: Future Changes to Watch | ||
|
|
||
| Tracking upstream features and plugins that would improve the zellij setup once available. | ||
|
|
||
| ## Auto Tab Rename (blocked on zellij release) | ||
|
|
||
| **Plugin:** [vmaerten/zellij-tab-rename](https://github.com/vmaerten/zellij-tab-rename) | ||
|
|
||
| Automatically renames tabs based on CWD, running process, or git root. Closest thing to tmux's `automatic-rename` behavior. Supports `source "process"` mode which shows `nvim`, `cargo`, etc. and falls back to directory name for shells. | ||
|
|
||
| **Blocked on:** `CwdChanged` event from [zellij PR #4546](https://github.com/zellij-org/zellij/pull/4546) — not yet in a release. Current zellij 0.43.1 does not support it. | ||
|
|
||
| **When available:** Add to `load_plugins` in `config.kdl.tmpl` with `source "process"` and `git_root "true"`. | ||
|
|
||
| ## Clickable Session Name (zjstatus feature request) | ||
|
|
||
| zjstatus's `{session}` widget has no click behavior. Clicking it to open the session manager (`zellij:session-manager`) would match the UX of `{tabs}` (click to switch) and `{swap_layout}` (click to cycle). | ||
|
|
||
| **Status:** Not implemented. Would need a feature request on [dj95/zjstatus](https://github.com/dj95/zjstatus/issues). | ||
|
|
||
| ## Autolock Status Indicator | ||
|
|
||
| The `zellij-autolock` plugin's enabled/disabled state is invisible to other plugins. `MessagePlugin` from keybindings sends `CustomMessage` events, but zjstatus pipes expect `PipeMessage` events — they're different event types in zellij's architecture. | ||
|
|
||
| **What would fix it:** | ||
| - zellij adding a silent `Run` action for keybindings (no pane opened) | ||
| - zellij unifying `CustomMessage` and `PipeMessage` so `MessagePlugin` can reach zjstatus pipes | ||
| - autolock exposing its state via a file or pipe | ||
|
|
||
| ## Mouse Button Bindings | ||
|
|
||
| Zellij's keybinding system only supports keyboard inputs. No mouse button bindings (middle-click to close tab, right-click context menu). Mouse events are either passthrough to terminal apps or internal UI only. | ||
|
|
||
| **Status:** No known proposal. Would need a zellij core feature request. | ||
|
|
||
| ## Image Support in Multiplexers (yazi/superfile) | ||
|
|
||
| Terminal image protocols (Kitty graphics, sixel) don't pass through zellij correctly. Tools like yazi and superfile that rely on inline image rendering show broken or no images inside zellij panes. | ||
|
|
||
| **Status:** Known zellij limitation. Partial sixel support exists but Kitty graphics protocol passthrough is incomplete. Track [zellij-org/zellij#2790](https://github.com/zellij-org/zellij/issues/2790) and related issues. | ||
|
|
||
| ## Independent Pane Border Colors | ||
|
|
||
| Pane border colors are tied to the theme's component system (`frame_selected`, `frame_unselected`, `frame_highlight`). The current custom theme (`catppuccin-mocha-subtle`) uses surface0/1/2 for subtle borders. If zellij adds dedicated border color settings independent of the component theme, the workaround theme could be simplified. |
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
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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There are two consecutive blank lines added before
end, which makes the block look like it has trailing whitespace. Consider removing the extra empty lines to keep the interactive config tight/consistent.