-
Notifications
You must be signed in to change notification settings - Fork 69
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Prevent the '1' file from being created and install pyautogui * Try pynput instead (seems to be more stable) * Add item to the todo list for this branch * Simplyfy ms code * Reduce duped code * Remove that stupid keyboard lib * Update requirements * Root is not needed anymore * Not sure what is best to use * Works on windows * Undo that * Errors are no longer logged * Remove readme junk * Use pyautogui for the numpad * add test for Mk3 * Fixed conda env and version number * Update environment-build.yml * Fixed pyinstaller issues * Move requirements.txt to INSTALL * Test diff kb lib for windows * Nope * Prepare windows keyboard api * Add untested code for pressing keys * Add a lot of keycodes * Add numpad to unix * Implement keys that LPHK uses * Use pyautogui for writing strings * Add LPX support (#42) Launchpad X support and small changes * Made to use launchpad.py master branch * Add a few missing keys Co-authored-by: nimaid <[email protected]> Co-authored-by: Malik Enes Şafak <[email protected]>
- Loading branch information
1 parent
3d5b4bb
commit 562fe7f
Showing
20 changed files
with
1,271 additions
and
844 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,9 @@ __pycache__/ | |
# C extensions | ||
*.so | ||
|
||
# intellij/PyCharm | ||
.idea/ | ||
|
||
# Distribution / packaging | ||
.Python | ||
build/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
MouseInfo==0.1.3 | ||
Pillow==7.1.1 | ||
py-getch==1.0.1 | ||
PyAutoGUI==0.9.50 | ||
pygame==1.9.6 | ||
PyGetWindow==0.0.8 | ||
PyMsgBox==1.0.7 | ||
pynput==1.6.8 | ||
pyperclip==1.8.0 | ||
PyRect==0.1.4 | ||
PyScreeze==0.1.26 | ||
python-xlib==0.27 | ||
python3-xlib==0.15 | ||
PyTweening==1.0.3 | ||
six==1.14.0 | ||
tkcolorpicker==2.1.3 | ||
-e git+git://github.com/FMMT666/launchpad.py.git@3e3fc3b2589d9ced80bc6c9b218dd90c8a2dd485#egg=launchpad-py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,4 @@ | ||
#!/bin/bash -i | ||
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )" | ||
# https://ubuntuforums.org/showthread.php?t=2290602 | ||
xhost + | ||
python $DIR/LPHK.py | ||
conda deactivate |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
0.2.10 | ||
0.3.0_pr35_07042020 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.