warpd Command Examples (with examples)
- Linux
- November 5, 2023
1: Run warpd in normal mode
warpd --normal
Motivation: Running warpd in normal mode allows for the keyboard-driven manipulation of the pointer. This is useful for users who prefer using the keyboard instead of the mouse for tasks such as navigating through menus or interacting with GUI elements.
Explanation: The --normal
option starts warpd in normal mode, which enables the keyboard-driven pointer manipulation functionality.
Example Output: Once warpd is running in normal mode, the user can use the keyboard to move the cursor or perform other actions.
2: Run warpd in hint mode
warpd --hint
Motivation: Running warpd in hint mode can improve efficiency when navigating through large or complex interfaces by providing visual hints for clickable areas.
Explanation: The --hint
option starts warpd in hint mode, which displays hints or labels near clickable areas on the screen. This allows the user to quickly identify and select the desired target.
Example Output: When warpd is running in hint mode, hints or labels will appear near clickable areas on the screen. This makes it easier for the user to navigate and interact with the interface.
3: Move cursor left
h
Motivation: Moving the cursor left allows the user to navigate horizontally on the screen or within an interface.
Explanation: The command h
moves the cursor one step to the left.
Example Output: After executing the h
command, the cursor position will shift one unit to the left.
4: Move cursor down
j
Motivation: Moving the cursor down is useful for navigating vertically on the screen or within an interface.
Explanation: The command j
moves the cursor one step down.
Example Output: After executing the j
command, the cursor position will shift one unit down.
5: Move cursor up
k
Motivation: Moving the cursor up allows the user to navigate vertically on the screen or within an interface.
Explanation: The command k
moves the cursor one step up.
Example Output: After executing the k
command, the cursor position will shift one unit up.
6: Move cursor right
l
Motivation: Moving the cursor right is useful for navigating horizontally on the screen or within an interface.
Explanation: The command l
moves the cursor one step to the right.
Example Output: After executing the l
command, the cursor position will shift one unit to the right.
7: Emulate left click
m
Motivation: Emulating a left click allows the user to perform a click action without physically using the mouse.
Explanation: The command m
emulates a left click action. When executed, it performs the same action as physically clicking the left mouse button.
Example Output: After executing the m
command, the interface or application will respond as if a left click was performed at the current cursor position.
By exploring these command examples, users can effectively utilize warpd for keyboard-driven pointer manipulation, making navigating interfaces more efficient and streamlining interactions.