Δημοσιεύτηκε: 28 Νοέμ 2011, 13:50
1. Το touchpad-indicator;
Ψάξε για "touchpad" ή touchpad-indicator
2. Αν δε δουλέψει, υπάρχει ακόμη ένα πρόγραμμα, gpointing devices:
3. Αν κι αυτό δε δουλέψει, υπαρχει μια εντολή:
Παράδειγμα script:
https://help.ubuntu.com/community/Synap ... hortcutKey
- Κώδικας: Επιλογή όλων
sudo add-apt-repository ppa:atareao/atareao
sudo apt-get update
sudo apt-get install touchpad-indicator
Ψάξε για "touchpad" ή touchpad-indicator
2. Αν δε δουλέψει, υπάρχει ακόμη ένα πρόγραμμα, gpointing devices:
- Κώδικας: Επιλογή όλων
sudo apt-get install gpointing-device-settings
gpointing-device-settings
3. Αν κι αυτό δε δουλέψει, υπαρχει μια εντολή:
- Κώδικας: Επιλογή όλων
synclient -l
synclient TouchpadOff=0
Παράδειγμα script:
https://help.ubuntu.com/community/Synap ... hortcutKey
- Κώδικας: Επιλογή όλων
state=`synclient -l | fgrep TouchpadOff | sed 's/^.*= //'`
if [ $state -eq 1 ]
then
synclient TouchpadOff=0
else
synclient TouchpadOff=1
fi