mu-config: add NO_COLOR environment variable

This commit is contained in:
Piotr Oleskiewicz 2019-01-22 17:08:24 +00:00
parent 75cf33f47b
commit 5faad10451
No known key found for this signature in database
GPG Key ID: F8764731F47D879F
1 changed files with 2 additions and 2 deletions

View File

@ -79,9 +79,9 @@ set_group_mu_defaults (void)
MU_CONFIG.muhome = exp;
}
/* check for the MU_NOCOLOR env var; but in any case don't
/* check for the MU_NOCOLOR or NO_COLOR env vars; but in any case don't
* use colors unless we're writing to a tty */
if (g_getenv (MU_NOCOLOR) != NULL)
if (g_getenv (MU_NOCOLOR) != NULL || g_getenv (NO_COLOR) != NULL)
MU_CONFIG.nocolor = TRUE;
if (!isatty(fileno(stdout)) || !isatty(fileno(stderr)))