Skip to content

Commit 1946d2d

Browse files
committed
docs: update install instructions to use 2-step brew command
1 parent fa56560 commit 1946d2d

File tree

3 files changed

+42
-15
lines changed

3 files changed

+42
-15
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@
2929

3030
### Homebrew (macOS/Linux)
3131
```bash
32-
brew install Bharath-code/tap/git-scope
32+
brew tap Bharath-code/tap
33+
brew install git-scope
3334
```
3435

3536
### From Source

docs/MARKETING_COPY.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,14 @@ It scans your dev directories and gives you a bird's-eye view of all your reposi
4343
- 🎨 Modern TUI with Bubble Tea & Lipgloss
4444
- ⌨️ Vim-like navigation (j/k)
4545

46-
**Install:**
46+
**Homebrew (macOS/Linux):**
47+
```bash
48+
brew tap Bharath-code/tap
49+
brew install git-scope
50+
```
51+
52+
**Go Install:**
4753
```bash
48-
brew install Bharath-code/tap/git-scope
49-
# or
5054
go install github.com/Bharath-code/git-scope/cmd/git-scope@latest
5155
```
5256

docs/index.html

Lines changed: 33 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -130,16 +130,19 @@
130130
background: var(--surface);
131131
border: 1px solid var(--border);
132132
display: inline-flex;
133-
align-items: center;
134-
padding: 1rem 1.5rem;
135-
border-radius: 99px;
133+
flex-direction: column;
134+
align-items: flex-start;
135+
padding: 1.5rem;
136+
border-radius: 12px;
136137
font-family: 'JetBrains Mono', monospace;
137138
color: var(--text-muted);
138139
cursor: pointer;
139140
transition: border-color 0.2s, transform 0.1s, box-shadow 0.2s;
140141
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
141142
position: relative;
142143
overflow: hidden;
144+
text-align: left;
145+
margin: 0 auto;
143146
}
144147

145148
.install-box:hover {
@@ -153,9 +156,24 @@
153156
transform: translateY(0);
154157
}
155158

156-
.install-box span {
159+
.install-line {
160+
display: flex;
161+
gap: 1rem;
162+
margin: 0.25rem 0;
163+
}
164+
165+
.prompt {
157166
color: var(--primary);
158-
margin-right: 0.75rem;
167+
user-select: none;
168+
}
169+
170+
.cmd {
171+
color: var(--text-main);
172+
}
173+
174+
.comment {
175+
color: #555;
176+
font-style: italic;
159177
}
160178

161179
.demo-section {
@@ -275,10 +293,7 @@
275293
}
276294

277295
.install-box {
278-
font-size: 0.9rem;
279-
padding: 1rem;
280296
width: 100%;
281-
justify-content: center;
282297
}
283298
}
284299
</style>
@@ -307,10 +322,17 @@ <h1>Control Your <br> <span class="gradient-text">Git Universe</span></h1>
307322
</p>
308323

309324
<div class="install-box"
310-
onclick="navigator.clipboard.writeText('brew install Bharath-code/tap/git-scope'); alert('Copied to clipboard!');">
311-
<span>$</span> brew install Bharath-code/tap/git-scope
325+
onclick="navigator.clipboard.writeText('brew tap Bharath-code/tap\nbrew install git-scope'); alert('Copied cmds!');">
326+
<div class="install-line">
327+
<span class="prompt">$</span>
328+
<span class="cmd">brew tap Bharath-code/tap</span>
329+
</div>
330+
<div class="install-line">
331+
<span class="prompt">$</span>
332+
<span class="cmd">brew install git-scope</span>
333+
</div>
312334
</div>
313-
<br>
335+
314336
<p style="margin-top:1rem; font-size: 0.8rem; color:#555;">(Click to copy)</p>
315337
</section>
316338

0 commit comments

Comments
 (0)