-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathusage.html
More file actions
338 lines (305 loc) · 9.55 KB
/
Copy pathusage.html
File metadata and controls
338 lines (305 loc) · 9.55 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>GirGit - Usage & Workflow</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&family=JetBrains+Mono:wght@400;700&display=swap" rel="stylesheet">
<style>
:root {
--bg-color: #0f172a;
--card-bg: #1e293b;
--text-main: #f8fafc;
--text-muted: #94a3b8;
--accent-primary: #3b82f6;
--accent-secondary: #8b5cf6;
--gradient: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
--nav-bg: rgba(15, 17, 42, 0.8);
--code-bg: rgba(0, 0, 0, 0.3);
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: 'Inter', system-ui, -apple-system, sans-serif;
background-color: var(--bg-color);
color: var(--text-main);
line-height: 1.6;
overflow-x: hidden;
}
/* Typography */
h1, h2, h3 {
font-weight: 700;
letter-spacing: -0.025em;
}
code, .mono {
font-family: 'JetBrains Mono', monospace;
background: var(--code-bg);
padding: 0.2rem 0.4rem;
border-radius: 4px;
color: var(--accent-primary);
font-size: 0.9em;
}
a {
text-decoration: none;
color: inherit;
transition: color 0.2s;
}
/* Navigation */
nav {
position: sticky;
top: 0;
z-index: 100;
background: var(--nav-bg);
backdrop-filter: blur(10px);
border-bottom: 1px solid rgba(255,255,255,0.1);
padding: 1rem 2rem;
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 2rem;
align-items: center;
}
nav a {
font-size: 0.95rem;
font-weight: 500;
color: var(--text-muted);
}
nav a:hover {
color: var(--text-main);
text-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}
.nav-btn {
background: rgba(255,255,255,0.1);
padding: 0.5rem 1rem;
border-radius: 8px;
color: var(--text-main) !important;
border: 1px solid transparent;
}
.nav-btn:hover {
background: rgba(255,255,255,0.2);
border-color: rgba(255,255,255,0.3);
}
/* Header */
header {
text-align: center;
padding: 4rem 1rem 3rem;
max-width: 900px;
margin: 0 auto;
}
header h1 {
font-size: 3rem;
margin-bottom: 0.5rem;
background: var(--gradient);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
display: inline-block;
}
/* Layout */
main {
max-width: 1000px;
margin: 0 auto;
padding: 0 1rem 4rem;
}
section {
margin-bottom: 4rem;
}
section h2 {
font-size: 1.8rem;
margin-bottom: 1.5rem;
display: flex;
align-items: center;
gap: 0.5rem;
}
section h2::before {
content: '#';
color: var(--accent-primary);
opacity: 0.6;
}
p {
color: var(--text-muted);
font-size: 1.1rem;
margin-bottom: 1rem;
}
strong {
color: var(--text-main);
}
/* Lists & Grids */
.grid-list {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 1.5rem;
}
.card {
background: var(--card-bg);
padding: 1.5rem;
border-radius: 12px;
border: 1px solid rgba(255,255,255,0.05);
transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover {
transform: translateY(-3px);
box-shadow: 0 10px 30px -10px rgba(0,0,0,0.5);
border-color: var(--accent-primary);
}
.card h3 {
color: var(--accent-secondary);
font-size: 1.1rem;
margin-bottom: 0.5rem;
}
/* Workflow Steps */
.workflow-step {
display: flex;
gap: 1rem;
margin-bottom: 1.5rem;
align-items: flex-start;
}
.step-number {
background: var(--gradient);
color: white;
width: 32px;
height: 32px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: bold;
flex-shrink: 0;
margin-top: 0.2rem;
}
/* Footer */
footer {
text-align: center;
padding: 3rem 1rem;
border-top: 1px solid rgba(255,255,255,0.05);
color: var(--text-muted);
font-size: 0.9rem;
}
</style>
</head>
<body>
<nav>
<a href="index.html">Home</a>
<a href="usage.html" style="color: var(--text-main);">Usage & Workflow</a>
<a
href="https://github.com/robertoMarcojr/GirGit/releases/download/v1.1.0/GirGit_Setup.exe"
class="nav-btn"
download
>
Download App
</a>
</nav>
<header>
<h1>Usage & Workflow</h1>
<p>Master the shortcuts. Stay in the flow.</p>
</header>
<main>
<section>
<h2>Getting Started</h2>
<p>
GirGit is designed to be invisible until you need it.
It stays local to your system and respects your privacy.
</p>
<div class="grid-list">
<div class="card">
<h3>1. Select Provider</h3>
<p>Launch the app and choose between ChatGPT or Gemini.</p>
</div>
<div class="card">
<h3>2. Use Shortcuts</h3>
<p>Control everything via keyboard without interrupting your work.</p>
</div>
<div class="card">
<h3>3. Customize</h3>
<p>Tailor your system prompts to get the exact answers you need.</p>
</div>
</div>
</section>
<section>
<h2>Typical Workflow</h2>
<div class="card" style="padding: 2rem;">
<div class="workflow-step">
<div class="step-number">1</div>
<div>
<strong>Choose Provider</strong>
<p>Use the launcher window to select ChatGPT, Gemini, or custom prompt mode.</p>
</div>
</div>
<div class="workflow-step">
<div class="step-number">2</div>
<div>
<strong>Capture Screenshot</strong>
<p>Press <code>Ctrl + L</code> to take a screenshot of any area on your screen (like a coding problem).</p>
</div>
</div>
<div class="workflow-step">
<div class="step-number">3</div>
<div>
<strong>OCR & Process</strong>
<p>GirGit automatically extracts text from the image locally.</p>
</div>
</div>
<div class="workflow-step">
<div class="step-number">4</div>
<div>
<strong>Send Prompt</strong>
<p>Press <code>Ctrl + Enter</code> to send the extracted text + your custom prompt to the AI.</p>
</div>
</div>
<div class="workflow-step">
<div class="step-number">5</div>
<div>
<strong>Interact</strong>
<p>View the response. Toggle audio with <code>Ctrl + Space</code> or mouse mode with <code>Ctrl + Shift + M</code>.</p>
</div>
</div>
</div>
</section>
<section>
<h2>Keyboard Shortcuts</h2>
<div class="grid-list">
<div class="card">
<h3>Navigation</h3>
<p><code>Ctrl + ↑↓←→</code><br>Move windows</p>
<p style="margin-top:0.5rem"><code>Ctrl + Shift + ↑↓</code><br>Scroll page</p>
</div>
<div class="card">
<h3>Core Actions</h3>
<p><code>Ctrl + L</code><br>Capture Screenshot</p>
<p style="margin-top:0.5rem"><code>Ctrl + Enter</code><br>Send Prompt</p>
</div>
<div class="card">
<h3>Modes</h3>
<p><code>Ctrl + Space</code><br>Toggle Mic/Audio</p>
<p style="margin-top:0.5rem"><code>Ctrl + Shift + M</code><br>Toggle Mouse Mode</p>
</div>
<div class="card">
<h3>System</h3>
<p><code>Ctrl + /</code><br>Toggle Visibility</p>
<p style="margin-top:0.5rem"><code>Ctrl + Q</code><br>Quit App</p>
</div>
<div class="card">
<h3>Management</h3>
<p><code>Ctrl + D</code><br>Delete All Screenshots</p>
<p style="margin-top:0.5rem"><code>Ctrl + Backspace</code><br>Delete Last Screenshot</p>
</div>
</div>
</section>
<section>
<h2>Privacy & Security</h2>
<p>
GirGit does not store, send, or proxy any personal data.
All processing is done locally, and AI interactions happen directly between
you and the provider using your own credentials.
</p>
</section>
</main>
<footer>
<p>© 2025 RobertoMarcoJr · MIT License</p>
</footer>
</body>
</html>