diff options
| author | Olcan <[email protected]> | 2025-05-19 11:03:04 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-05-19 11:03:04 -0700 |
| commit | 750649eb64f247df925e2236c2595f12d88f7584 (patch) | |
| tree | 109325b5ab4521bab2eaa6fc199b7e7cd41e671d /packages/cli/src/ui/components | |
| parent | 2a3c3d00ea99f73a99bd188e0ff547d11727f3a5 (diff) | |
indicate system prompt override on bottom right; require GEMINI_SYSTEM_MD to make it more explicit; allow custom paths for read/write (#427)
Diffstat (limited to 'packages/cli/src/ui/components')
| -rw-r--r-- | packages/cli/src/ui/components/Footer.tsx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/packages/cli/src/ui/components/Footer.tsx b/packages/cli/src/ui/components/Footer.tsx index 3b3cac72..0e2779cb 100644 --- a/packages/cli/src/ui/components/Footer.tsx +++ b/packages/cli/src/ui/components/Footer.tsx @@ -74,6 +74,9 @@ export const Footer: React.FC<FooterProps> = ({ <Text color={Colors.AccentRed}>▼ </Text> </Text> )} + {process.env.GEMINI_SYSTEM_MD && ( + <Text color={Colors.AccentRed}>|⌐■_■|</Text> + )} </Box> </Box> ); |
