Make the nvidia warning louder

This commit is contained in:
Drew DeVault 2016-03-24 16:48:42 -04:00
parent f590acc84c
commit 06107bb44e
1 changed files with 1 additions and 0 deletions

View File

@ -53,6 +53,7 @@ void detect_proprietary() {
char *line = read_line(f);
if (strstr(line, "nvidia")) {
fprintf(stderr, "\x1B[1;31mWarning: Proprietary nvidia drivers do NOT support Wayland. Use nouveau.\x1B[0m\n");
fprintf(stderr, "\x1B[1;31mYes, they STILL don't work with the newly announced wayland \"support\".\x1B[0m\n");
free(line);
break;
}