Added emoji support, refactored, internalized pyautogui

This commit is contained in:
2023-03-03 21:19:39 -06:00
parent 9eea74f841
commit a3496263b9
23 changed files with 26934 additions and 1660 deletions

23
user_config/bin/mouse-keyboard Executable file
View File

@@ -0,0 +1,23 @@
#!/bin/bash
# . CONFIG.sh
# set -o xtrace ## To debug scripts
# set -o errexit ## To exit on error
# set -o errunset ## To exit if a variable is referenced but not set
function main() {
call_path=`pwd`
path=""
if [[ ! "${1::1}" == /* ]]; then
path="${call_path}/${1}"
else
path="${1}"
fi
cd "/opt/"
python /opt/mouse-keyboard.zip "$@"
}
main "$@";

View File

@@ -0,0 +1,11 @@
[Desktop Entry]
Name=Mouse-Board
GenericName=Mouse Keyboard
Comment=A Python and Gtk+ mouse based keyboard.
Exec=/bin/mouse-keyboard %F
Icon=/usr/share/mouse-keyboard/icons/mouse-keyboard.png
Type=Application
StartupNotify=true
Categories=System;FileTools;Utility;Core
MimeType=
Terminal=false

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

Before

Width:  |  Height:  |  Size: 10 KiB

After

Width:  |  Height:  |  Size: 10 KiB