0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

[Arch Linux] Elecomの古いwireless mouseを使う。

Last updated at Posted at 2025-03-18

Elecomの古い2.4GHz帯ワイアレスマウスがあったので、x11を設定してみた。
マウスのモデルは、M-FIR08DRです。

/etc/X11/xorg.conf.d/30-mouse.confあたりに入れておきます。

30-mouse.conf
Section "InputClass"
    Identifier "Wireless Mouse"
    MatchIsPointer "on"
    Driver "libinput"
    Option "AccelProfile" "flat"
    Option "AccelerationScheme" "none"
    Option "AccelSpeed" "0"
    Option "AccelerationNumerator" "2"
    Option "AccelerationDenominator" "1"
    Option "AccelerationThreshold" "4"
EndSection

そのままでは、コピーアンドペーストのコピーに選択範囲が自由にできなかったので、~/.Xresourcesに以下を書きます。

~/.Xresources
*selectToClipboard: true

これで、動きました、

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?