web-dev-qa-db-ja.com

USBマウスのxinputマウス設定を永続化するにはどうすればよいですか?

xinputを使用して SBマウスの設定を変更

xinput set-ptr-feedback 'USB Optical Mouse' 4 1 1

マウスを取り外したり再起動した後、これらの設定を永続的にするにはどうすればよいですか?

5
ændrük

コマンドをcronすることも、スタートアップに追加することもできますが、どちらも特にエレガントではありません。私があなたなら、これをudevルールに追加し、システムがイベントを検出し、必要なときにコマンドを実行できるようにします。

まず、マウスベンダーと製品文字列が必要です。これらはlsusbで見つけることができます。マウスを探してください。これが私のマウスです。

Bus 004 Device 012: ID 1532:000f Razer USA, Ltd 

パート[1532:000f1532はベンダー、000fは製品です。

そこで、udevにルールを追加します。 udevルールは/lib/udev/rules.d/にあります。 独自に記述する を使用するか、生意気になって別のものを編集することができます。役に立つ小さなREADMEもありますので、よくお読みください(cat /lib/udev/rules.d/README)。

どちらを選んでも、このようなルールを追加します。この機能を実現するために以前のIDを使用していることに注意してください。

BUS=="usb", SYSFS{idVendor}=="1532", SYSFS{idProduct}=="000f", ACTION=="add",
RUN+="/usr/bin/xinput set-ptr-feedback 'USB Optical Mouse' 4 1 1"

udevshouldすぐにそれを拾います。

注udevは、デバイスの設定に関して、それ自体でかなり賢いことを行うことができます。 xinputはまったく必要ないかもしれません。マウスの カスタム構成 の例を次に示します。

7
Oli

定期的にxinput --listをポーリングし、デバイスが接続または削除されたときにコマンドを実行する小さなデーモンを起動する以外に、他のソリューションは考えられません。

サンプルコード:

#! /bin/sh -x
#
# xievd [INTERVAL]
#
# Poll `xinput` device list every INTERVAL seconds (default: 10)
# and run script in ~/.xievd/${device_name}.sh when a device is
# plugged-in (or pulled out).
#
# The device name is the same as given by `xinput --list`, with
# the following transformations applied:
#   * any non-alphanumeric character is deleted (except: space, `_` and `-`)
#   * leading and trailing spaces are removed
#   * any sequence of 1 or more space chars is converted to a single `_`
#

interval=${1:-10}

scripts_dir="$HOME/.xievd"
if [ ! -d "$scripts_dir" ]; then
  echo 1>&2 "xievd: No scripts directory -- exiting."
  exit 1
fi

state_dir="$(mktemp -t -d xievd.XXXXXX)" \
  || { echo 1>&2 "xievd: Cannot create state directory -- exiting."; exit 1; }
trap "rm -rf $state_dir; exit;" TERM QUIT INT ABRT

process_xinput_device_list() {
  touch "${state_dir}/.timestamp"

  # find new devices and run "start" script
  xinput --list --short \
    | fgrep slave \
    | sed -r -e 's/id=[0-9]+.+//;s/[^a-z0-9 _-]//ig;s/^ +//;s/ *$//;s/ +/_/g;' \
    | (while read device; do 
        if [ ! -e "${state_dir}/${device}" ]; then
          # new device, run plug-in script
          [ -x "${scripts_dir}/${device}" ] && "${scripts_dir}/${device}" start
        fi
        touch "${state_dir}/${device}"
      done)

  # find removed devices and run "stop" script
  for d in "$state_dir"/*; do
    if [ "${state_dir}/.timestamp" -nt "$d" ]; then
      # device removed, run "stop" script
      device="$(basename $d)"
      [ -x "${scripts_dir}/${device}" ] && "${scripts_dir}/${device}" stop
      rm -f "$d"
    fi
  done
}

# main loop
while true; do
      process_xinput_device_list
      sleep $interval
      sleep 1
done

# cleanup
rm -rf "$state_dir"

上記のコードをPATH内のxievd実行可能ファイルに保存し、スタートアップアプリケーションに追加して、~/.xievd/USB_Optical_Mouseシェルスクリプトを作成します。

#! /bin/sh
if [ "$1" = "start" ]; then
  xinput set-ptr-feedback 'USB Optical Mouse' 4 1 1
fi
2
Riccardo Murri