Notes/src/Python/Scripts/keyboard-mouse/README.md

27 lines
452 B
Markdown
Raw Normal View History

2021-02-21 06:53:23 +00:00
# Keyboard-Mouse
Use Python 3 to move mouse with keyboard keys.
# To Launch:
Must use sudo as python3_xlib needs it.
<br/>
<code>
sudp python3 keyboardMouse.py
</code>
# Default keys are:
<br/>
Up: Ctrl+Shift+Up_Arrow
<br/>
Down: Ctrl+Shift+Down_Arrow
<br/>
Left: Ctrl+Shift+Left_Arrow
<br/>
Right: Ctrl+Shift+Right_Arrow
<br/>
Exit: Ctrl+Shift+C
# Needed Python Libraries are:
<code>
sudo pip3 install python3_xlib keyboard pyautogui
</code>