From 9c72a3ae129a5ab6cbc13fded86da01f2a354a75 Mon Sep 17 00:00:00 2001 From: Olcan Date: Mon, 19 May 2025 16:58:57 -0700 Subject: ui tweaks (#442) --- packages/cli/src/ui/components/Footer.tsx | 17 +++++------------ 1 file changed, 5 insertions(+), 12 deletions(-) (limited to 'packages/cli/src/ui/components/Footer.tsx') diff --git a/packages/cli/src/ui/components/Footer.tsx b/packages/cli/src/ui/components/Footer.tsx index 0e2779cb..03e85db1 100644 --- a/packages/cli/src/ui/components/Footer.tsx +++ b/packages/cli/src/ui/components/Footer.tsx @@ -7,14 +7,13 @@ import React from 'react'; import { Box, Text } from 'ink'; import { Colors } from '../colors.js'; -import { Config } from '@gemini-code/server'; +import { shortenPath, tildeifyPath, Config } from '@gemini-code/server'; interface FooterProps { config: Config; debugMode: boolean; debugMessage: string; cliVersion: string; - geminiMdFileCount: number; corgiMode: boolean; } @@ -23,19 +22,16 @@ export const Footer: React.FC = ({ debugMode, debugMessage, cliVersion, - geminiMdFileCount, corgiMode, }) => ( - {geminiMdFileCount > 0 && ( - - Using {geminiMdFileCount} GEMINI.md files - - )} + + {shortenPath(tildeifyPath(config.getTargetDir()), 70)} + {debugMode && ( - {debugMessage || ' | Running in debug mode.'} + {' ' + (debugMessage || '--debug')} )} @@ -74,9 +70,6 @@ export const Footer: React.FC = ({ )} - {process.env.GEMINI_SYSTEM_MD && ( - |⌐■_■| - )} ); -- cgit v1.2.3