After looking around for a bit on how to change my touchpad parameters automatically on booting up, I've found that I should be able to do this by creating the folder ~/.config/autostart in which I then create a touchpad.sh.desktop and a touchpad.sh file, where the first contains:
[Desktop Entry]
Type=Application
Exec=/home/jschoete/.config/autostart/touchpad.sh
X-GNOME-Autostart-enabled=true
Hidden=false
NoDisplay=false
Name[en_GB]=touchpad
Name=touchpad
Comment[en_GB]=natural scrolling and tap to click
Comment=natural scrolling and tap to click
and the latter:
#!/bin/bash
xinput set-prop 12 327 1
xinput set-prop 12 343 1
The latter file works as intended when executed manually, but it doesn't seem to get executed upon bootup, what is going wrong?