1
1
mirror of https://github.com/swaywm/sway synced 2024-11-19 07:34:28 +01:00

Make the nvidia warning louder

This commit is contained in:
Drew DeVault 2016-03-24 16:48:42 -04:00
parent f590acc84c
commit 06107bb44e

@ -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;
}