キーボードとウェブブラウジングでマウスを操作する

キーボードとウェブブラウジングでマウスを操作する

マウスの機能が使えなくなってしまい、Ubuntu PC で数日間マウスなしで作業しなければなりません。コンピューターでマウスがなくても作業はできます。しかし、Web ブラウジングはまったくうまくいきません。リンクを選択するには、tab何度も押す必要があります。テンキーでマウスを操作すると、マウスの動きが非常に遅くなります (役に立ちません)。そのため、現在は PC で作業し、ラップトップで Web ブラウジングを行っています。これを解決する方法はありますか? Ubuntu 12.10 を使用しています。

答え1

あなたすべき「キーボード設定」の「マウスキー」タブでマウスの加速設定を制御できるようになります(ソース):


ウブントゥ 12.10
これらの設定は次の場所にあります。

設定 > ユニバーサル アクセス > ポイントとクリック > マウス キー (無効)

ここに画像の説明を入力してください

あるいは、次のものにも興味があるかもしれません:

  • keynavsudo apt-get install keynav):

    Keynav は、キーボードをマウス カーソルの高速移動ツールにします。数回のキー操作で、カーソルを画面上の任意の位置に移動できます。また、マウスのクリックもシミュレートします。マウスでできることはすべて、キーボードで実行できます。

  • ギズモデーモン:

Gizmod は、Linux で代替入力デバイスを使用できるようにするユーティリティです。これには、PowerMate USB ダイヤル、X で認識またはサポートされていないボタンを備えた高級キーボードやマウスなどのデバイスが含まれます。Gizmod では、アプリケーションごとのイベント マッピングが可能です。

答え2

私は長年この問題を抱えていましたが、ついに解決策を見つけました:xkbset

からこのリンク:

sudo apt-get install xkbset
xkbset ma [delay] [interval] [time to max] [max speed] [curve]
xkbset ma 60 10 10 20 10

もちろん、必要に応じて値を調整することもできます。

すぐに解決しました。これが将来誰かの役に立つことを願っています。

答え3

Firefox を使用している場合は、次のようなアドオンを検討する価値があるかもしれません。

もう使用していません(少なくとも現在および近い将来は使用しません)

そしてもちろん欠かせない(?)キー設定拡大:

私は長年、それをありがたく使ってきました。

答え4

結局、Firefoxのアドオンを見つけました。ヴィムFXそしてChrome用のヴィミウムマウスを使わずに簡単に多くの操作を行うことができます。ここでは、vim ユーザーであればすでに知っているショートカットを紹介します。

URLの扱い

o       Focus the Address Bar
O       Focus the Search Bar
p       Navigate to the address in the clipboard
P       Open new tab and navigate to the address in the clipboard
yf      Copy link url to the clipboard
vf      Focus element
yy      Copy current page link to the clipboard
r       Reload current page
R       Reload current page and all the assets (js, css, etc.)
ar      Reload pages in all tabs
aR      Reload pages in all tabs including assets (js, css, img)
s       Stop loading current page
as      Stop loading pages in all tabs

ページ内を移動する

gg      Scroll to the Top of the page
G       Scroll to the Bottom of the page
j,c-e   Scroll Down
k,c-y   Scroll Up
h       Scroll Left
l       Scroll Right
d       Scroll half a Page Down
u       Scroll half a Page Up
c-f     Scroll full Page Down
c-b     Scroll full Page Up

タブの操作

t       Open New Blank tab
J,gT    Go to the Previous tab
K,gt    Go to the Next tab
c-J     Move current tab to the Left
c-K     Move current tab to the Right
gh      Navigate to the Home Page
gH,g^   Go to the First tab
gL,g$   Go to the Last tab
x       Close current tab
X       Restore last closed tab

ブラウジング

f       Follow a link on the current page
F       Follow a link on the current page in a new tab
af      Follow multiple links on the current page
[       Follow the Previous page link on the current page
]       Follow the Next page link on the current page
gu      Go up one level in the URL hierarchy
gU      Go up to root of the URL hierarchy
H       Go Back in history
L       Go Forward in history

その他

/       Enter Find mode
a/      Enter Find mode to highlight all matches
n       Go to the next Find match
N       Go to the previous Find match
i       Enter insert mode: Ignore all commands
?       Show this dialog
:       Open Developer Toolbar
Esc     Enter normal mode (remove hint markers, exit insert mode) or blur/close active element

関連情報