Last active
June 28, 2024 21:01
-
-
Save siberex/8060c63e13229e4496dec0865ce79412 to your computer and use it in GitHub Desktop.
Raspberry Pi onscreen keyboard
This file contains hidden or 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
#!/bin/bash | |
# apt install -y wvkbd | |
PID="$(pidof wvkbd-mobintl)" | |
if [ "$PID" != "" ]; then | |
killall wvkbd-mobintl | |
else | |
wvkbd-mobintl -L 300 --landscape-layers full,special | |
fi |
This file contains hidden or 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
# ~/Desktop/wvkbd.desktop | |
[Desktop Entry] | |
Name=Toggle wvkbd Keyboard | |
Exec=/home/pi/onscreen-keyboard/toggle-wvkbd.sh | |
Type=Application | |
Terminal=false | |
Icon=/home/pi/onscreen-keyboard/keyboard.png | |
Categories=Utility | |
X-MB-INPUT-MECHANISM=True | |
Name[en_US]=Toggle wvkbd |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment