From 8de1ecc446a7aae9a983e8e383e443faf0b31b17 Mon Sep 17 00:00:00 2001 From: Marty Oehme Date: Tue, 16 Apr 2019 13:53:19 +0200 Subject: [PATCH] fix xinit syntax error --- .xinitrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.xinitrc b/.xinitrc index bf4f377..bd66876 100644 --- a/.xinitrc +++ b/.xinitrc @@ -56,7 +56,7 @@ type compton >/dev/null 2>&1 && compton & type flashfocus >/dev/null 2>&1 && flashfocus -l never & # additional config options for Touchpad devices ONLY -if [ dmesg | grep "Touchpad" | wc -l > 0 ]; then +if [ $(dmesg | grep "Touchpad" | wc -l) > 0 ]; then # enable touch tapping for XPS13 touchpad - for different devices get the touchpad name with xinput list-prop xinput set-prop "DLL075B:01 06CB:76AF Touchpad" "libinput Tapping Enabled" 1 fi