-
Notifications
You must be signed in to change notification settings - Fork 513
feature/custom terminal configs #717
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
Open
DhanushSantosh
wants to merge
19
commits into
AutoMaker-Org:v0.14.0rc
Choose a base branch
from
DhanushSantosh:feature/custom-terminal-configs
base: v0.14.0rc
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+4,557
−268
Open
Changes from 13 commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
7e90328
feat(terminal): Add core infrastructure for custom terminal configura…
DhanushSantosh cea405f
feat(terminal): Wire terminal service with settings service
DhanushSantosh 13457de
feat(terminal): Add Settings UI and theme change synchronization
DhanushSantosh 4f28286
fix(terminal): Add error handling and explicit field mapping for term…
DhanushSantosh 691c181
fix(terminal): Use React Query mutation hook for settings updates
DhanushSantosh 8d2d6d8
fix(terminal): Use React Query hook for globalSettings instead of store
DhanushSantosh f07fbc0
debug(terminal): Add detailed logging for terminal config application
DhanushSantosh efad219
Fix terminal rc updates and bash rcfile loading
DhanushSantosh 7d31a05
feat(terminal): add banner on shell start
DhanushSantosh 92cbb42
feat(terminal): colorize banner per theme
DhanushSantosh a44d425
chore(terminal): bump rc version for banner colors
DhanushSantosh b1387d2
feat(terminal): match banner colors to launcher
DhanushSantosh ca5a16f
feat(terminal): add prompt customization controls
DhanushSantosh 01d59d5
feat: integrate oh-my-posh prompt themes
DhanushSantosh b3829f6
fix: resolve oh-my-posh theme path
DhanushSantosh 942e6ba
fix: correct oh-my-posh config invocation
DhanushSantosh b818a45
docs: add terminal theme screenshot
DhanushSantosh a204bc1
fix: address review feedback and stabilize e2e test
DhanushSantosh 02659b8
ui: split terminal config into separate card
DhanushSantosh 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
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,25 @@ | ||
| /** | ||
| * Terminal Theme Data - Re-export terminal themes from platform package | ||
| * | ||
| * This module re-exports terminal theme data for use in the server. | ||
| */ | ||
|
|
||
| import { terminalThemeColors, getTerminalThemeColors as getThemeColors } from '@automaker/platform'; | ||
| import type { ThemeMode } from '@automaker/types'; | ||
| import type { TerminalTheme } from '@automaker/platform'; | ||
|
|
||
| /** | ||
| * Get terminal theme colors for a given theme mode | ||
| */ | ||
| export function getTerminalThemeColors(theme: ThemeMode): TerminalTheme { | ||
| return getThemeColors(theme); | ||
| } | ||
|
|
||
| /** | ||
| * Get all terminal themes | ||
| */ | ||
| export function getAllTerminalThemes(): Record<ThemeMode, TerminalTheme> { | ||
| return terminalThemeColors; | ||
| } | ||
|
|
||
| export default terminalThemeColors; |
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.
Uh oh!
There was an error while loading. Please reload this page.