7 lines
294 B
Bash
Executable file
7 lines
294 B
Bash
Executable file
#!/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
|