Skip to content

Commit 6330dae

Browse files
committed
fixed conflict brew project names
1 parent a47bd48 commit 6330dae

File tree

3 files changed

+4
-11
lines changed

3 files changed

+4
-11
lines changed

README.md

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# gitfetch
1+
tap# gitfetch
22

33
A neofetch-style CLI tool for GitHub statistics. Display your GitHub profile and stats in a beautiful, colorful terminal interface.
44

@@ -50,14 +50,7 @@ You should see: `✓ Logged in to github.com as YOUR_USERNAME`
5050
### macOS (Homebrew)
5151

5252
```bash
53-
brew tap matars/homebrew-gitfetch
54-
brew install gitfetch
55-
```
56-
57-
Or install directly without tapping:
58-
59-
```bash
60-
brew install matars/homebrew-gitfetch/gitfetch
53+
brew install matars/gitfetch/gitfetch
6154
```
6255

6356
### Arch Linux (AUR)

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "gitfetch"
7-
version = "1.0.11"
7+
version = "1.0.12"
88
description = "A neofetch-style CLI tool for GitHub statistics"
99
readme = "README.md"
1010
requires-python = ">=3.8"

src/gitfetch/display.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ def _determine_layout(self) -> str:
4747
"""Determine layout based on terminal width."""
4848
if self.terminal_width < 80:
4949
return 'minimal'
50-
elif self.terminal_width < 140:
50+
elif self.terminal_width < 100:
5151
return 'compact'
5252
else:
5353
return 'full'

0 commit comments

Comments
 (0)