aboutsummaryrefslogtreecommitdiff
path: root/sway/main.c
diff options
context:
space:
mode:
authorDrew DeVault <ddevault@linode.com>2016-03-24 16:48:42 -0400
committerDrew DeVault <ddevault@linode.com>2016-03-24 16:48:53 -0400
commit06107bb44eddec993354883436767b931f2aa4d7 (patch)
tree4671898c5df8004b7d0dc37bd0c589d59e704ae4 /sway/main.c
parentf590acc84c55c1b3d13cfd8b21a4544ee41eaaf0 (diff)
Make the nvidia warning louder
Diffstat (limited to 'sway/main.c')
-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;
}