12
6

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 1 year has passed since last update.

[linux] マウスボタンにキーボードのキーを割り当てる

Last updated at Posted at 2019-08-15

はじめに

マウスのホイールクリック(ミドルボタン)にキーボードのキーを割り当てたいと思います。滅茶滅茶かんたんなので記事にするか悩みましたが、意外と日本語の記事が無かったのでメモを残しておきます。困っていた人に読んでいただければ嬉しいです。

インストール

terminal
sudo apt install -y xdotool xbindkeys

button番号を調べる。

terminal
xev | grep button

設定

~/.xbindkeysrc
# ホイールクリックにスペースを割り当てる場合
"xdotool key space"
b:2

再読込

killall xbindkeys
xbindkeys

参考文献

こちらも参考になります

12
6
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
12
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?