Synapticsのタッチパッドを無効、有効する
touch.sh
#!/bin/bash
if [ $(synclient -l | grep TouchpadOff | awk -F '= ' '{ print $2 }’) -eq 0 ]; then
synclient TouchpadOff=1
else
synclient TouchpadOff=0
fi
Coding Changes the World
touch.sh
#!/bin/bash
if [ $(synclient -l | grep TouchpadOff | awk -F '= ' '{ print $2 }’) -eq 0 ]; then
synclient TouchpadOff=1
else
synclient TouchpadOff=0
fi