CLI_TITLE env var for setting the CLI title (#748)
This commit is contained in:
parent
a2f03636a5
commit
4192cfb092
|
@ -35,7 +35,6 @@ export interface Settings {
|
||||||
mcpServers?: Record<string, MCPServerConfig>;
|
mcpServers?: Record<string, MCPServerConfig>;
|
||||||
showMemoryUsage?: boolean;
|
showMemoryUsage?: boolean;
|
||||||
contextFileName?: string;
|
contextFileName?: string;
|
||||||
title?: string;
|
|
||||||
accessibility?: AccessibilitySettings;
|
accessibility?: AccessibilitySettings;
|
||||||
|
|
||||||
// Git-aware file filtering settings
|
// Git-aware file filtering settings
|
||||||
|
|
|
@ -337,7 +337,7 @@ export const App = ({
|
||||||
key={staticKey}
|
key={staticKey}
|
||||||
items={[
|
items={[
|
||||||
<Box flexDirection="column" key="header">
|
<Box flexDirection="column" key="header">
|
||||||
<Header title={settings.merged.title} />
|
<Header title={process.env.CLI_TITLE} />
|
||||||
<Tips config={config} />
|
<Tips config={config} />
|
||||||
</Box>,
|
</Box>,
|
||||||
...history.map((h) => (
|
...history.map((h) => (
|
||||||
|
|
Loading…
Reference in New Issue