commit 06107bb44eddec993354883436767b931f2aa4d7
parent f590acc84c55c1b3d13cfd8b21a4544ee41eaaf0
Author: Drew DeVault <ddevault@linode.com>
Date: Thu, 24 Mar 2016 16:48:42 -0400
Make the nvidia warning louder
Diffstat:
1 file changed, 1 insertion(+), 0 deletions(-)
diff --git a/sway/main.c b/sway/main.c
@@ -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;
}