Skip to content

Instantly share code, notes, and snippets.

@jasny
Created September 22, 2012 16:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jasny/3766751 to your computer and use it in GitHub Desktop.
Save jasny/3766751 to your computer and use it in GitHub Desktop.
Logitech Performance Mouse MX - thumb button as middle-mouse
#!/bin/bash
for ID in $(xinput list | grep "Logitech Unifying Device" | perl -pe 's/^.*?id=(\d+).*$/\1/'); do
xinput set-button-map $ID 1 2 3 4 5 6 7 8 9 2 11 12 13 14 15 16 17 18 19 20 2>/dev/null | true;
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment