From 1a708f0956c7902b20ab5d3c018ea8cd3be8d51e Mon Sep 17 00:00:00 2001 From: dok Date: Sat, 26 Jan 2019 15:49:15 +0100 Subject: [PATCH] Use slow path if stdin is a tty If stdin is a tty and dmenu is ran with the fast option then it's impossible to close stdin because the keyboard is already grabbed. --- dmenubar/dmenu.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/dmenubar/dmenu.c b/dmenubar/dmenu.c index 5c835dd..6b8f51b 100644 --- a/dmenubar/dmenu.c +++ b/dmenubar/dmenu.c @@ -6,9 +6,7 @@ #include #include #include -#ifdef __OpenBSD__ #include -#endif #include #include @@ -754,7 +752,7 @@ main(int argc, char *argv[]) die("pledge"); #endif - if (fast) { + if (fast && !isatty(0)) { grabkeyboard(); readstdin(); } else {