initial virtual keyboard package

This commit is contained in:
Daniel Stock
2019-05-23 15:47:02 +02:00
parent c71188cf93
commit 28de4b86a9
11 changed files with 1900 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
Package: tooloop-virtual-keyboard
Version: 0.1.0
Maintainer: vollstock
Homepage: https://www.vollstock.de
Bugs: https://github.com/Tooloop/Tooloop-Packages
Section: tooloop/addons
Architecture: all
Depends: onboard
dbus-x11
Name: Virtual Keyboard
Description: Onscreen Keyboard for touchscreens
It uses the onboard virtual keyboard. If you have trouble with your keyboard
switching language after tapping a key, find the line in /home/tooloop/.config/openbox
+11
View File
@@ -0,0 +1,11 @@
#!/bin/bash
set -e
cat <<EOT >>
# Virtual Keyboard
# set keyboard layout"
# https://answers.launchpad.net/onboard/+question/235265
onboard &
EOT
exit 0