User manual
How to install matchbox-keyboard                                               2016-08-31 
4. Create a virtual keyboard startup script 
sudonano /usr/bin/toggle-matchbox-keyboard.sh 
Paste the following, press ctrl + x and y, to save then exit 
#!/bin/bash 
#This script toggle the virtual keyboard 
PID=`pidof matchbox-keyboard` 
if [ ! -e $PID ]; then 
killall matchbox-keyboard 
else 
matchbox-keyboard -s 50 extended& 
fi 
Add executable permission for the script above 
sudochmod +x /usr/bin/toggle-matchbox-keyboard.sh 
5, Add script above to Start menu 
sudonano /usr/share/applications/toggle-matchbox-keyboard.desktop 
Paste the following content, press ctrl + x and y, to save then exit 
[Desktop Entry] 
Name=Toggle Matchbox Keyboard 
Comment=Toggle Matchbox Keyboard 
Exec=toggle-matchbox-keyboard.sh 
Type=Application 
Icon=matchbox-keyboard.png 
Categories=Panel;Utility;MB 
X-MB-INPUT-MECHANSIM=True 




