web-dev-qa-db-ja.com

キーの組み合わせを別の組み合わせに再マッピングします。 g。 Super + Ctrl + Shift + J-> Ctrl + Shift +左

追加のキーレイヤーを実装して、手首を動かさずに英数字以外のキーにアクセスできるようにします。

私はこの目的のためにAutokeyを使用していましたが、経験は満足のいくものではありませんでした。

したがって、低レベルのソリューションが必要です。

xbindkeysxvkbd の組み合わせを試してください。 xbindkeysはキーをリッスンし、翻訳をxvkbdに送信します。

Sudo apt-get install xbindkeys xvkbd
xbindkeys --defaults > /home/your-user-name/.xbindkeysrc

お気に入りのエディターで.xbindkeysrcを開きます。私は他のすべてをコメントアウトしましたが、必要に応じて参照するのは良いことです。

それを確認するために、Ctrl +をマッピングしてみました。 Ctrl + Vへ

"xvkbd -xsendevent -text "\Cv""
   control + semicolon

あなたはこのようなことをしていると思う

"xvkbd -xsendevent -text "\C\S\[Left]""
  Super+Control+Shift+J

ファイルを保存してから、xbindkeysを実行します

構成の変更をリロードするために、xbindkeysプロセスを強制終了してから再起動しました。

xbindkeysの構文

XbindkeysのGUIを使用してキーの組み合わせを作成しました

Sudo apt-get install xbindkeys-config
xbindkeys-config

実行したら、.xbindkeysrcファイルの2行目に入力する組み合わせのキーを取得を押します。

xvkbdの構文

マニュアルから:

\r - Return
\t - Tab
\b - Backspace
\e - Escape
\d - Delete
\S - Shift (modify the next character; please note that modify with ``\S'' will be ignored in many cases. For example, ``a\Cb\ScD\CE'' will be interpreted as a, Control-b, c, Shift-D, and Control-Shift-E.)
\C - Control (modify the next character)
\A - Alt (modify the next character)
\M - Meta (modify the next character)
\[keysym] - the keysym keysym (e.g., \[Left]), which will be processed in the similar matter with other general characters
\{keysym} - the keysym keysym (e.g., \{Left}), which will be processed in more primitive matter and can also be used for modofier keys such as Control_L, Meta_L, etc.; also, \{+keysym} and \{+keysym} will simulate press and release of the key, respectively [Version 3.3]
\Ddigit - delay digit * 100 ms
\xvalue - move mouse pointer (use "+" or "-" for relative motion)
\yvalue - move mouse pointer (use "+" or "-" for relative motion)
\mdigit - simulate click of the specified mouse button

それがどのように機能するか、そして組み合わせがあなたの目的に合っているかどうかを聞くのが大好きです。キーマッパーとしては見た目はいいですが、必ずしもマクロランナーではありません。

9
Mark Hewitt

ここで解決策を見つけることができると思います(Xorgは最下位層であるため...): https://wiki.archlinux.org/index.php/Keyboard_configuration_in_Xorg

編集:.confファイルにlv3:win_switchオプションを追加する必要があると私が理解したこと

0
mattia.b89