grr-cli 0.4.0

Google tools from the terminal, at maximum performance: zero-config Gmail, Calendar, Drive, Contacts, Chat and Forms over HTTP/3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
---
interface Props {
  code: string;
  label?: string;
}

const { code, label = 'shell' } = Astro.props;
---

<div class="code-window" role="region" aria-label={`${label} command`}>
  <div class="code-window-bar">
    <span class="window-dots" aria-hidden="true"><i></i><i></i><i></i></span>
    <span class="code-window-label">{label}</span>
    <span class="terminal-caret" aria-hidden="true"></span>
  </div>
  <pre><code>{code}</code></pre>
</div>