diff --git a/README.md b/README.md index 3200a2f..a6d338f 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ ### Installation -#### From [ESSENTIAL KAOS Public Repository](https://pkgs.kaos.st) +#### From [ESSENTIAL KAOS Public Repository](https://kaos.sh/kaos-repo) ```bash sudo yum install -y https://pkgs.kaos.st/kaos-repo-latest.el$(grep 'CPE_NAME' /etc/os-release | tr -d '"' | cut -d':' -f5).noarch.rpm @@ -43,6 +43,7 @@ Options --ruby-version, -r Install version defined in version file --info, -i Print detailed info about version --all, -a Print all available versions + --pager, -P Use pager for long output --no-progress, -np Disable progress bar and spinner --no-color, -nc Disable colors in output --help, -h Show this help message diff --git a/cli/cli.go b/cli/cli.go index 961a5ad..204716f 100644 --- a/cli/cli.go +++ b/cli/cli.go @@ -240,7 +240,7 @@ func Run(gitRev string, gomod []byte) { // preConfigureUI preconfigures UI based on information about user terminal func preConfigureUI() { - if fmtc.IsColorsSupported() { + if !fmtc.IsColorsSupported() { fmtc.DisableColors = true }