2
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?

More than 5 years have passed since last update.

Linux版google chromeでホイールの速度を変える。

Last updated at Posted at 2019-07-25

##本文入り口
本文短いです。
Firefoxからchromeに移行したんだがホイールの速度がやたら遅くて、人差し指の腹が痛くなった。
Firefoxのときはabout:configでmousewheel.default.delta_multiplier_yの値を変更するだけで良いのだが、chromeにはそういうのがないみたい。色々拡張機能を探して試したがイマイチだったので昼寝しようと目を閉じると、どこからか声が…

imwheelで調整すればよくね?

たしかに。

##本文 imwheelの設定
ということで、imwheelを設定したときのブックマークを見つけた。確かにアプリごとに設定できると書いてある。もうすでにインストールしてあるので設定ファイルをいじる。

gedit ~/.imwheelrc

".*"
    None, Up, Button4, 3
    None, Down, Button5, 3

これを、

"google-chrome$"
    None, Up, Button4, 3
    None, Down, Button5, 3

こうじゃ!
".*"は全てのアプリを対象にするこれを"google-chrome$"こうしてchromeだけを対象とするようにする。これで今までファイルマネージャーとかでも設定が効いてたのが効かなくなるけど、まあ別のそれはかまわないかな。Nemoでも設定を効かせたい場合はそれも書けばいい。あとはgeditとかも書けばいい。ここで続けて".*"で設定を書くとchromeの設定が上書きされるのかどうかはわかりません。
試すときはimwheelそれから、システムマネージャーでimwheelを検索してkill、で設定ファイルを書き換えてまた同じ繰り返し。
最後に、linux mint19の場合はSetup Applicationsで下の方にあるプラスマークを選択してCustom commandで名前を、imwheel、commandを、imwheelでおわり。
それだけ。
linuxならわざわざ拡張機能とかchromeの設定とかいじらなくても、imwheelを使えばいいよってだけ。

##インストールの仕方

sudo apt install imwheel

それで、

touch ~/.imwheelrc
gedit(もしくはnvimとかvim) ~/.imwheelrc

全アプリが対象なら、

".*"
    None, Up, Button4, 3 <= (3のとこを変える)
    None, Down, Button5, 3 <= (3のとこを変える)

特定のアプリが対象なら、

"おそらくここにコマンド$"
    None, Up, Button4, 3
    None, Down, Button5, 3

これで上手く行かなければここを参考に色々試してみたら良いと思います。最後に、

imwheel

でおわり。
##参考
https://wiki.archlinux.jp/index.php/Imwheel
http://pagent.github.io/2015/05/13/mouse-wheel-scroll-speed/
https://qiita.com/ys22_/items/f87c05a1141092c1d548

2
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
2
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?