A possible solution would be to install a program like xdotool, create a script, and add that script to start up applications.
- open a terminal window
- enter "sudo apt-get install xdotool"
- install this program
- browse to a location where you would like to store your script, this can be essentially anywhere on your computer. For this example I will just be putting it in documents.
- enter "cd ~/Documents"
- enter "nano touchpad.sh"
- Once in this file you can paste this script which will simple press the f6 key when ran:
#!/bin/bash
xdotool key XF86TouchpadToggle
- control+x to exit nano, press y, then enter to output to the file.
- now we must make this file executable so the computer will be able to run the script, run in the the same terminal window "chmod +x touchpad.sh" this makes the script executable.
- now in the zorin menu look for startup applications and launch it.
- in this window click add to make a new startup entry.
- enter this information
Name: touchpad
Command: ./~/Documents/touchpad.sh
Comment: Turns off touchpad on boot. - click add and now this script should execute on boot and cause for f6 to be clicked which should turn off your touchpad.
