Views:
4,480β
Votes: 9β
β
Solution
Tags:
scripts
shortcut-keys
touchpad
Link:
π See Original Answer on Ask Ubuntu β§ π
URL:
https://askubuntu.com/q/863750
Title:
Keyboard shortcut to toggle (enable/disable) laptop touchpad
ID:
/2016/12/23/Keyboard-shortcut-to-toggle-_enable_disable_-laptop-touchpad
Created:
December 23, 2016
Edited: June 12, 2020
Upload:
September 15, 2024
Layout: post
TOC:
false
Navigation: false
Copy to clipboard: false
Script to toggle Touchpad on/off with screen notification
Partial credit to this post (Enable/disable touchpad)
Create toggle-touchpad script
Create a new directory /home/USER/bin
and then use gedit /home/USER/bin/toggle-touchpad
. NOTE: Replace USER with your user ID. Copy and paste these lines into your editor:
#!/bin/bash
# NAME: toggle-touchpad
# PATH: /home/$USER/bin
# DESC: Update pulseaudio output device when HDMI TV plugged / unplugged
# CALL: called from Keyboard Shortcut `Super`+`T`
# DATE: Created Dec 23, 2016.
# NOTE: Written for AU question: http://askubuntu.com/questions/863746/keyboard-shortcut-to-disable-the-laptop-touchpad/863750?noredirect=1#comment1333958_863750
# Use device number matching touchpad, in this case 14
if [[ $(xinput list 14 | grep -Ec "disabled") -eq 1 ]]; then
xinput enable 14
DISPLAY=:0 notify-send --urgency=critical --icon=/usr/share/icons/gnome/256x256/status/user-available.png "Touchpad enabled"
else
xinput disable 14
DISPLAY=:0 notify-send --urgency=critical --icon=/usr/share/icons/gnome/256x256/status/user-busy.png "Touchpad disabled"
fi
exit 0
Mark toggle-touchpad script as executable
Save the file and exit the editor. Now flag the file as executable using chmod +x /home/USER/bin/toggle-touchpad
Assign toggle-touchpad script to keyboard shortcut
Open up System Settings
βΆ Keyboard
βΆ Shortcuts
βΆ Custom Shortcuts
βΆ +
This screen appears:
Fill in the Custom Shortcut fields like this:
- Name =
Toggle Touchpad
- Command =
/home/USER/bin/toggle-touchpad
Click Apply button to save.
The new entry appears with status Disabled. Right click on Disabled and use Super+Z (or any other unused shortcut combination). I wanted to use Super+T but that is already assigned to Nautilus Trashcan.
Modify toggle-touchpad script to different device number
The default device number is set at 14. To find out what your device number is use the following:
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
USER@host:~/bin$ xinput
β‘ Virtual core pointer id=2 [master pointer (3)]
β β³ Virtual core XTEST pointer id=4 [slave pointer (2)]
β β³ Logitech Performance MX id=10 [slave pointer (2)]
β β³ Logitech K800 id=11 [slave pointer (2)]
β β³ AlpsPS/2 ALPS GlidePoint id=14 [slave pointer (2)]
β£ Virtual core keyboard id=3 [master keyboard (2)]
β³ Virtual core XTEST keyboard id=5 [slave keyboard (3)]
β³ Power Button id=6 [slave keyboard (3)]
β³ Video Bus id=7 [slave keyboard (3)]
β³ Power Button id=8 [slave keyboard (3)]
β³ Sleep Button id=9 [slave keyboard (3)]
β³ Laptop_Integrated_Webcam_HD id=12 [slave keyboard (3)]
β³ Dell WMI hotkeys id=15 [slave keyboard (3)]
β³ AT Translated Set 2 keyboard id=13 [slave keyboard (3)]
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
USER@host:~/bin$
You can pick any device you like, ie Touchpad = 14, Webcam = 12, etc.
Which ever device number you use, simply open your /home/USER/bin/toggle-touchpad
script and replace 14
with that device number.
Modify toggle-touchpad script to use different icons
When the βTouchpad enabledβ / βTouchpad disabledβ notification bubble is displayed, an icon is displayed left of the text. Stock icons are used from /usr/share/icons/gnome/256x256/status/
but you can change them.
For enabling touchpad this is displayed:
For disabling touchpad this is displayed: