mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-05-14 04:02:26 +00:00
3 lines
161 B
TypeScript
3 lines
161 B
TypeScript
export function isMouseClicksDisabled(): boolean {
|
|
return /^(1|true|yes|on)$/.test((process.env.HERMES_TUI_DISABLE_MOUSE_CLICKS ?? '').trim().toLowerCase())
|
|
}
|