2

I want this command to be executed automatically when my machine starts

xinput set-prop "AlpsPS/2 ALPS DualPoint Stick" "Device Enabled" 0

How can I do this?

Zanna
  • 69,223
  • 56
  • 216
  • 327
Al Fahad
  • 263
  • 1
  • 2
  • 10

1 Answers1

0

Use cron
Edit /etc/crontab by using the command: sudo gedit /etc/crontab and add the following line to the bottom of the file:

@reboot     root   <your command>
singrium
  • 6,532
  • 7
  • 38
  • 68