Metadata-Version: 2.4
Name: easywinfetch
Version: 1.0.0
Summary: A Windows system information display tool similar to Neofetch
Home-page: https://github.com/Mkeko/winfetch
Author: Mkeko
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: Microsoft :: Windows
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: wmi
Requires-Dist: psutil
Requires-Dist: pyyaml
Dynamic: author
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# 🪟 Winfetch for Windows

A lightweight system info tool for Windows, inspired by **Neofetch**, but with Python vibes.

---

## ✨ Features

- ASCII art logos right in your terminal (because why not?)
- Configurable layout and data display
- Several prebuilt logos: Windows 10, Windows 11, Linux Tux, macOS, Python
- Control the info order and labels — your way
- Terminal colors for easy visual parsing
- Easy to install, fun to tweak

---

## 🚀 Installation

Just pop this into your shell:

```bash
pip install winfetch
```

It should take care of all dependencies. If not, let us know!

---

## 🖥️ Usage

Once installed, you can run Winfetch in two ways:

1. Using the command:
```bash
winfetch
```

2. Or by running the Python script:
```bash
python neofetch_win.py
```

That's it. You should see a nice ASCII logo alongside system stats.

---

## ⚙️ Configuration

Tweak your display by editing the `config.yml` file.

Some things you can adjust:

- Which ASCII art to show
- Where the logo appears (left/right)
- What system info shows up — and in what order
- Colors, labels, spacing
- Custom logos (if you're feeling artistic)

Example snippet from a config:

```yaml
ascii:
  selected_logo: "windows_11"
  colors:
    enabled: true
    primary: "blue"
    secondary: "cyan"

display:
  show_logo: true
  logo_position: left
  spacing: 2
```

More complete sample config is included in the repo.

---

## 🎨 Available ASCII Logos

Here's what's built-in:

- `windows_10`
- `windows_11`
- `windows_simple`
- `linux_tux`
- `macos`
- `python`

You can even create your own! See `ASCII.py` and the config guide for instructions.

---

## 📦 Requirements

- Windows OS
- Python 3.6+
- Dependencies:
  - `wmi`
  - `psutil`
  - `pyyaml`

Use `pip` to install them if needed. Usually `pip install winfetch` handles this for you.

---

## 📄 License

MIT — do whatever you want, just don't blame us if your terminal explodes.

---

## 🤝 Contributing

PRs are welcome!

Spotted a bug? Got a logo idea? Want to improve the config flexibility? Jump in. Open an issue or send a pull request — let's make Winfetch better together.
