From 82a885a7df1288ae0f9ba9de1195c89df776ce1c Mon Sep 17 00:00:00 2001
From: Max Bridgland <34947910+M4cs@users.noreply.github.com>
Date: Sat, 23 May 2020 15:18:38 -0400
Subject: [PATCH 1/4] Update README.md
---
README.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/README.md b/README.md
index 5b46736..9c1706b 100644
--- a/README.md
+++ b/README.md
@@ -11,7 +11,7 @@
### Overview
-Winfetch is still extremely early in development. The configuration is minimal and there is little to no customization for titles until I add them! This is my first Go program and I have only known it as of last night (when creating this repository).
+Winfetch is an alternative program for neofetch/screenfetch made for Windows! It allows you to display system information through your command line without needing to have any hacky bash fixes to run neofetch. It's also faster!
From 7b64ef5fc85be3457d9235fa43a6b3afec8217a8 Mon Sep 17 00:00:00 2001
From: Max Bridgland <34947910+M4cs@users.noreply.github.com>
Date: Sat, 23 May 2020 15:19:22 -0400
Subject: [PATCH 2/4] Update README.md
---
README.md | 85 ++-----------------------------------------------------
1 file changed, 2 insertions(+), 83 deletions(-)
diff --git a/README.md b/README.md
index 9c1706b..d2104eb 100644
--- a/README.md
+++ b/README.md
@@ -13,94 +13,13 @@
### Overview
Winfetch is an alternative program for neofetch/screenfetch made for Windows! It allows you to display system information through your command line without needing to have any hacky bash fixes to run neofetch. It's also faster!
+For More information and detailed instructions on configuration and installation read the [Wiki here](https://github.com/M4cs/winfetch/wiki)
+
-### Installation
-
-#### Using Prebuilt Binary
-
-Download from the releases tab [here](https://github.com/M4cs/winfetch/releases)
-
-Place this file somewhere inside your $PATH
-
-#### Using `go get`
-
-First install [Go](https://golang.org/)
-
-Then use `go get` from the command line to install:
-
-```
-go get github.com/M4cs/winfetch
-```
-
-Now you can run `winfetch` to get your system information to display!
-
-#### Building From Source
-
-Make sure you have Go installed then run:
-
-```
-git clone https://github.com/M4cs/winfetch
-cd winfetch
-go build
-```
-
-You will now have a `winfetch.exe` file in your directory!
-
-## Configuration
-
-There isn't much to the config at the moment but you can find it at `.winfetch.json` in your Home folder.
-
-The default config is as follows:
-
-```json
-{
- "format": [
- "user",
- "sep",
- "uptime",
- "mem",
- "cpu",
- "cpuCores",
- "cpuThreads",
- "procs",
- "disk",
- "wversion",
- "gpus",
- "bios",
- "baseboard"
- ],
- "showAscii": true,
- "useDefaultColors": true,
- "useSmallAscii": false,
- "asciiColor": "Blue",
- "useCustomAscii": false,
- "customAsciiPath": "",
- "userColor": "Red",
- "sepColor": "Red",
- "titleColor": "Green",
- "infoColor": "White",
- "titles": {
- "memory": "Memory",
- "cpu": "CPU #",
- "cpuCores": "CPU Cores",
- "cpuThreads": "CPU Threads",
- "gpus": "GPU #",
- "diskSize": "Disk Size",
- "windowsVersion": "Windows Ver.",
- "bios": "BIOS",
- "baseboard": "Baseboard",
- "processCount": "Processes",
- "uptime": "Uptime"
- }
-}
-```
-
-The formatting is order specific, each module will display based on it's place in the array. **All modules are displayed above and by default when you first install winfetch**
-
## Dependencies
[ghw](https://github.com/jaypipes/ghw) - Hardware/System Information
From e7e0e71e8ba6b7fe42a2a1224b87bb1302141719 Mon Sep 17 00:00:00 2001
From: Max Bridgland <34947910+M4cs@users.noreply.github.com>
Date: Sat, 23 May 2020 15:20:15 -0400
Subject: [PATCH 3/4] Update README.md
---
README.md | 39 +++++++++++++++++++++++++++++++++++++++
1 file changed, 39 insertions(+)
diff --git a/README.md b/README.md
index d2104eb..ddd8638 100644
--- a/README.md
+++ b/README.md
@@ -20,6 +20,45 @@ For More information and detailed instructions on configuration and installation
+## Installation
+
+### Downloading Binary/Installer
+
+You can find the Binary and Installer in the [Releases Section](https://github.com/M4cs/winfetch/releases). If you download the installer it will install `winfetch.exe` to whichever path you specify, the default is `C:\
+Program Files\winfetch\winfetch.exe`.
+
+If you download the binary alone in `.zip` format you can unzip and extract it to somewhere inside your `$PATH`.
+
+**Make sure wherever you install `winfetch` to is inside your $PATH! For more info refer [here](https://www.architectryan.com/2018/03/17/add-to-the-path-on-windows-10/)
+
+
+
+### Using `go get`
+
+To install from go simply run:
+
+```
+go get github.com/M4cs/winfetch
+```
+
+
+
+### Building From Source
+
+Clone the repository:
+
+```
+git clone https://github.com/M4cs/winfetch.git
+```
+
+Run the following commands:
+
+```
+cd winfetch
+go build
+./winfetch.exe # This will be built inside the winfetch/ directory
+```
+
## Dependencies
[ghw](https://github.com/jaypipes/ghw) - Hardware/System Information
From b00b2122b95266e9aa8f5fbd06142ac2313ff89d Mon Sep 17 00:00:00 2001
From: Max Bridgland <34947910+M4cs@users.noreply.github.com>
Date: Sat, 23 May 2020 15:20:31 -0400
Subject: [PATCH 4/4] Update README.md
---
README.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/README.md b/README.md
index ddd8638..e277708 100644
--- a/README.md
+++ b/README.md
@@ -29,7 +29,7 @@ Program Files\winfetch\winfetch.exe`.
If you download the binary alone in `.zip` format you can unzip and extract it to somewhere inside your `$PATH`.
-**Make sure wherever you install `winfetch` to is inside your $PATH! For more info refer [here](https://www.architectryan.com/2018/03/17/add-to-the-path-on-windows-10/)
+**Make sure wherever you install `winfetch` to is inside your $PATH! For more info refer [here](https://www.architectryan.com/2018/03/17/add-to-the-path-on-windows-10/)**