From 7ff59553af4457cfc6666c187654b06981f3067e Mon Sep 17 00:00:00 2001 From: sphh Date: Tue, 18 May 2021 15:11:33 +0000 Subject: [PATCH] Correct a wrong check for the 'xrandr' executable. --- contrib/rotate-screen/rotate-screen | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/rotate-screen/rotate-screen b/contrib/rotate-screen/rotate-screen index 1bc317712..62d38df4a 100755 --- a/contrib/rotate-screen/rotate-screen +++ b/contrib/rotate-screen/rotate-screen @@ -37,7 +37,7 @@ if test -z $XINPUT; then fi XRANDR=`which xrandr` -if test -z $GDBUS; then +if test -z $XRANDR; then echo "Command 'xrandr' not found." fi