透過鍵盤控制滑鼠和網頁瀏覽

透過鍵盤控制滑鼠和網頁瀏覽

我失去了滑鼠功能,我不得不在 Ubuntu PC 上工作幾天而沒有滑鼠功能。我可以在電腦上不使用它來完成我的工作。但我根本不喜歡瀏覽網頁。如果我想選擇一個鏈接,我必須按tab幾次,如果我用數字鍵盤控制滑鼠,那麼滑鼠移動真的很慢(而且沒用)。所以,目前我在電腦上做我的事情,並用筆記型電腦瀏覽網頁。有什麼辦法可以解決這個問題嗎?我使用的是Ubuntu 12.10

答案1

應該能夠在「鍵盤首選項」的「滑鼠鍵」標籤中控制滑鼠的加速設定(來源):


烏班圖12.10
這些設定位於:

設定 > 通用存取 > 指向並點選 > 滑鼠鍵(停用)

在此輸入影像描述

或者,您可能對這些感興趣:

  • keynav( sudo apt-get install keynav):

    Keynav 讓您的鍵盤成為快速滑鼠遊標移動器。您可以透過幾次按鍵將遊標移到螢幕上的任何點。它還模擬滑鼠點擊。您可以使用鍵盤完成滑鼠可以完成的所有操作。

  • 小發明守護程式:

Gizmod 是一個用於在 Linux 中使用替代輸入裝置的實用程式。這包括 PowerMate USB 撥號盤、帶有 X 無法識別或支援的按鈕的精美鍵盤和滑鼠等裝置。

答案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 的附加元件VimFx和一個名為 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

相關內容