summaryrefslogtreecommitdiff
path: root/packages/cli/src/ui/utils/itermDetection.tsx
blob: 69c1f06a9020298b6ac5b645df18f8af9f7a23b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import React from 'react';
import { Box, Text } from 'ink';

export const ITermDetectionWarning: React.FC = () => {
  if (process.env.TERM_PROGRAM !== 'iTerm.app') {
    return null; // Don't render anything if not in iTerm
  }

  return (
    <Box marginTop={1}>
      <Text dimColor>Note: Flickering may occur in iTerm.</Text>
    </Box>
  );
};