Skip to content

Instantly share code, notes, and snippets.

@formigarafa
Last active June 4, 2016 03:05
Show Gist options
  • Select an option

  • Save formigarafa/b05d06ce0747b3a69cf8a14af0804811 to your computer and use it in GitHub Desktop.

Select an option

Save formigarafa/b05d06ce0747b3a69cf8a14af0804811 to your computer and use it in GitHub Desktop.

Revisions

  1. formigarafa revised this gist Jun 4, 2016. 1 changed file with 15 additions and 5 deletions.
    20 changes: 15 additions & 5 deletions tl_dr.md
    Original 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`
    ```
    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`
    ```
    xinput --list
    ```
    watch for ids on each line.

    `xinput --list-props 13`
    ```
    xinput --list-props 13
    ```

    `xinput --set-props 13 142 0`
    ```
    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`
    ```
    xinput -set-prop "DualPoint Stick" "Device Enabled" 0
    ```
  2. formigarafa created this gist Jun 4, 2016.
    18 changes: 18 additions & 0 deletions tl_dr.md
    Original 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`