Last active
June 4, 2016 03:05
-
-
Save formigarafa/b05d06ce0747b3a69cf8a14af0804811 to your computer and use it in GitHub Desktop.
Revisions
-
formigarafa revised this gist
Jun 4, 2016 . 1 changed file with 15 additions and 5 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,18 +1,28 @@ # tl;dr this was the final command for me ``` xinput -set-prop "DualPoint Stick" "Device Enabled" 0 ``` # source source: https://cederlys.wordpress.com/2010/07/13/disabling-the-track-stick-in-ubuntu/ # how did I get there: ``` xinput --list ``` watch for ids on each line. ``` xinput --list-props 13 ``` ``` xinput --set-props 13 142 0 ``` Ids are dynamically alocated but you can use device and property name, thus: ``` xinput -set-prop "DualPoint Stick" "Device Enabled" 0 ``` -
formigarafa created this gist
Jun 4, 2016 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,18 @@ # tl;dr this was the final command for me `xinput -set-prop "DualPoint Stick" "Device Enabled" 0` # source source: https://cederlys.wordpress.com/2010/07/13/disabling-the-track-stick-in-ubuntu/ # how did I get there: `xinput --list` watch for ids on each line. `xinput --list-props 13` `xinput --set-props 13 142 0` Ids are dynamically alocated but you can use device and property name, thus: `xinput -set-prop "DualPoint Stick" "Device Enabled" 0`