diff options
| author | Kyle Javier | 2021-10-02 02:37:58 -0400 |
|---|---|---|
| committer | Kyle Javier | 2021-10-02 02:37:58 -0400 |
| commit | 24faf59f1756939aa56723ba0e2cb604648ff45c (patch) | |
| tree | dd190a08182b05cece995dbebd490beab56fa680 | |
| parent | 40cc79b1045a2ee3f0fadc509c65503bbe26b6cb (diff) | |
syntax correction for POSIX-compliance
| -rwxr-xr-x | awesome/xinput-daemon.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/awesome/xinput-daemon.sh b/awesome/xinput-daemon.sh index c682530..85fa623 100755 --- a/awesome/xinput-daemon.sh +++ b/awesome/xinput-daemon.sh @@ -3,4 +3,4 @@ xinput set-prop pointer:"Logitech USB Trackball" "libinput Natural Scrolling Enabled" 1 xinput set-prop pointer:"Logitech USB Trackball" "libinput Accel Speed" 0.90000 -while true; do state=$(lsusb) && sleep 2 && [ '$state != $(lsusb)' ] && /home/kylert/.config/awesome/xinput.sh; done +while true; do state=$(lsusb) && sleep 2 && [ "$state != $(lsusb)" ] && /home/kylert/.config/awesome/xinput.sh; done |
