feat(app): add setting to show full project name in sidebar#21323
Open
AlexanderWillner wants to merge 1 commit intoanomalyco:devfrom
Open
feat(app): add setting to show full project name in sidebar#21323AlexanderWillner wants to merge 1 commit intoanomalyco:devfrom
AlexanderWillner wants to merge 1 commit intoanomalyco:devfrom
Conversation
Add a new appearance setting that displays the full project name as text in the sidebar rail instead of the default single-letter avatar icon. This helps distinguish projects that share the same first letter. When enabled, the sidebar rail widens from 64px to 96px to accommodate the longer text while maintaining truncation for very long names.
Contributor
|
The following comment was made by an LLM, it may be inaccurate: Based on the search results, I found one potentially related PR: PR #14758: feat(app): show parent directory name above project icons in sidebar This PR is related because it also addresses sidebar project display/naming, showing parent directory names above project icons. It's working in the same area (sidebar-project.tsx and related components) to improve project identification. All other results are either the current PR (#21323) itself or unrelated features. No duplicate PRs with the exact same functionality were found. |
Author
Contributor
|
Thanks for updating your PR! It now meets our contributing guidelines. 👍 |
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.


Issue for this PR
Closes #
Type of change
What does this PR do?
When running OpenCode Desktop with multiple projects in the sidebar, each project is represented by a single-letter avatar icon. If many projects share the same first letter (e.g. all starting with "C"), they become indistinguishable.
This PR adds a new "Show project name in sidebar" toggle in Settings > Appearance that displays the full project name as text instead of the single-letter avatar. When enabled, the sidebar rail widens from 64px to 96px to accommodate the longer names, with truncation for very long project names.
How did you verify your code works?
bun turbo typecheck- all 13 packages pass with no errorsScreenshots / recordings
Before:

After:

Checklist