通过键盘控制鼠标和网页浏览

通过键盘控制鼠标和网页浏览

我的鼠标功能已经丧失,我不得不在几天内不使用鼠标在 Ubuntu PC 上工作。在电脑上,我可以不用鼠标做事情。但我在浏览网页时一点也不开心。如果我想选择一个链接,我必须按tab几次,如果我用数字键盘控制鼠标,那么鼠标移动得非常非常慢(而且毫无用处)。所以,目前我在 PC 上做事情,用笔记本电脑浏览网页。有什么办法可以解决这个问题吗?我使用的是 Ubuntu 12.10

答案1

应该可以在“键盘首选项”的“鼠标键”选项卡中控制鼠标的加速度设置(来源):


Ubuntu 12.10
这些设置位于:

设置 > 通用访问 > 指向和点击 > 鼠标键(禁用)

在此处输入图片描述

或者,您可能对这些感兴趣:

  • keynavsudo apt-get install keynav):

    Keynav 可让您的键盘成为快速鼠标光标移动器。只需按几下键,您就可以将光标移动到屏幕上的任意位置。它还可以模拟鼠标点击。您可以使用键盘完成鼠标可以做的所有事情。

  • Gizmo 守护进程

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

毕竟,我找到了一个名为虚拟模拟一个名为维美拉。您无需鼠标就可以轻松完成很多操作。以下是它的快捷键,如果您是 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

相关内容