From cc45257a56d57b1fceae4f74faada9fa1987d6da Mon Sep 17 00:00:00 2001 From: Xelnoc <109432268+Xelnoc@users.noreply.github.com> Date: Thu, 22 Sep 2022 16:01:29 +0100 Subject: [PATCH] Update README.md --- README.md | 37 ++++++++++++++++++++++++++++++++++++- 1 file changed, 36 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 6858021..53d934d 100644 --- a/README.md +++ b/README.md @@ -1 +1,36 @@ -in beta or something idk \ No newline at end of file + +# NeOwOfetch + +Combination of neofetch and uwufetch written in Go, currently in beta. + +## Requirements +requires Go 1.19 or above. [Install Go](https://github.com/golang/go) +## Installation + +Guide for installing neowofetch on Linux + +### Step 1: +Clone the repository and move into the directory + +``` +git clone https://github.com/exhq/neOwOfetch.git && cd neOwOfetch +``` + +### Step 2: +Build and install the program using Go +``` +go build +go install +``` + +### Adding to path +Find path for Go programs (default is /home/user/go/) +``` +go env GOPATH +``` +add gopath/bin to your $path + +example: +``` +export PATH=$PATH:/home/user/go/bin +```