Created
November 1, 2011 12:04
-
-
Save ynkdir/1330390 to your computer and use it in GitHub Desktop.
Disable Touchpad
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# Disable touchpad | |
# Reference: http://d.hatena.ne.jp/hosikiti/20101002/1285987199 | |
# Add this script to Startup Applications. | |
# You can see device list with `xinput list`. | |
# This is for my PC. | |
DEVICE="SynPS/2 Synaptics TouchPad" | |
# ON | |
# xinput set-prop "$DEVICE" --type=int --format=8 "Device Enabled" 1 | |
# OFF | |
xinput set-prop "$DEVICE" --type=int --format=8 "Device Enabled" 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment