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
  • 70,465
Al Fahad
  • 273

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,880