summaryrefslogtreecommitdiff
path: root/packages/cli/src/ui/components/Footer.tsx
diff options
context:
space:
mode:
authorDeWitt Clinton <[email protected]>2025-05-17 21:57:27 -0700
committerGitHub <[email protected]>2025-05-17 21:57:27 -0700
commit13a6a9a690900a50287d344592bf02bdfb2586f1 (patch)
tree9c1426336a26e83973e554cfc3e77fba8c629b77 /packages/cli/src/ui/components/Footer.tsx
parent9749fcb4256b87a47480ea77ff25f07aa0c4ce45 (diff)
Introduce a small easter egg. Woof. (#412)
Also changes auto-completion and /help to skip over slash commands that don't contain a description to avoid spoiling the surprise.
Diffstat (limited to 'packages/cli/src/ui/components/Footer.tsx')
-rw-r--r--packages/cli/src/ui/components/Footer.tsx12
1 files changed, 12 insertions, 0 deletions
diff --git a/packages/cli/src/ui/components/Footer.tsx b/packages/cli/src/ui/components/Footer.tsx
index a98c8760..3b3cac72 100644
--- a/packages/cli/src/ui/components/Footer.tsx
+++ b/packages/cli/src/ui/components/Footer.tsx
@@ -15,6 +15,7 @@ interface FooterProps {
debugMessage: string;
cliVersion: string;
geminiMdFileCount: number;
+ corgiMode: boolean;
}
export const Footer: React.FC<FooterProps> = ({
@@ -23,6 +24,7 @@ export const Footer: React.FC<FooterProps> = ({
debugMessage,
cliVersion,
geminiMdFileCount,
+ corgiMode,
}) => (
<Box marginTop={1}>
<Box>
@@ -62,6 +64,16 @@ export const Footer: React.FC<FooterProps> = ({
<Box>
<Text color={Colors.AccentBlue}> {config.getModel()} </Text>
<Text color={Colors.SubtleComment}>| CLI {cliVersion} </Text>
+ {corgiMode && (
+ <Text>
+ <Text color={Colors.SubtleComment}>| </Text>
+ <Text color={Colors.AccentRed}>▼</Text>
+ <Text color={Colors.Foreground}>(´</Text>
+ <Text color={Colors.AccentRed}>ᴥ</Text>
+ <Text color={Colors.Foreground}>`)</Text>
+ <Text color={Colors.AccentRed}>▼ </Text>
+ </Text>
+ )}
</Box>
</Box>
);