summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFurkan Sahin <furkan-dev@proton.me>2016-03-24 16:48:42 -0400
committerFurkan Sahin <furkan-dev@proton.me>2016-03-24 16:48:42 -0400
commit7cd2b4ef985b63132a2b42cfeb1e2b861a003e72 (patch)
tree4671898c5df8004b7d0dc37bd0c589d59e704ae4
parent6032b05be4eaa341de99f4f822dcc321f9af732d (diff)
Make the nvidia warning louder
-rw-r--r--sway/main.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/sway/main.c b/sway/main.c
index 810bd12c..eef1ad19 100644
--- 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;
}