diff --git a/README.md b/README.md index 0b66ded..862caed 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,6 @@ Stormfetch is still in beta, so distro compatibility is limited. If you would li - Download `make` from your package manager - (Optional) Download `xorg-xhost` from your package manager to display DE/WM and monitor information - (Optional) Download `xorg-xdpyinfo` from your package manager to display screen resolution -- (Optional) Download `lshw` from your package manager to display GPU information - Run the following command to compile the project ``` make diff --git a/main.go b/main.go index 181cae5..7b1e7ab 100644 --- a/main.go +++ b/main.go @@ -74,7 +74,7 @@ func readConfig() { } // Show Dependency warning if enabled if config.DependencyWarning { - dependencies := []string{"lshw", "xhost", "xdpyinfo"} + dependencies := []string{"xhost", "xdpyinfo"} var missing []string for _, depend := range dependencies { if _, err := os.Stat(path.Join("/usr/bin/", depend)); err != nil { diff --git a/Utils.go b/utils.go similarity index 100% rename from Utils.go rename to utils.go