8 lines
294 B
Bash
8 lines
294 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
EBid=$(xinput list --id-only pointer:"G-SPY USB Gaming Mouse")
|
||
|
Zowieid=$(xinput list --id-only pointer:"Kingsis Peripherals ZOWIE Gaming mouse")
|
||
|
|
||
|
xinput --set-prop "${EBid}" 'libinput Accel Profile Enabled' 0, 1 &
|
||
|
xinput --set-prop "${Zowieid}" 'libinput Accel Profile Enabled' 0, 1
|