Permanently disable point stick
I wrote a one liner script for the startup to disable a touchpad on one of our computers. The id for the touchpad also changed every boot.
xinput --disable `xinput list | grep Synaptics | awk -F'id=' '{print$2}' | awk -F' ' '{print$1}'`
You can change the Synaptics
to Stick
and it should work