mirror of
https://github.com/Tooloop/Tooloop-Packages.git
synced 2026-04-28 04:51:38 +02:00
virtual keyboard in autostart and with thumbnail
This commit is contained in:
@@ -5,9 +5,12 @@ Homepage: https://www.vollstock.de
|
|||||||
Bugs: https://github.com/Tooloop/Tooloop-Packages
|
Bugs: https://github.com/Tooloop/Tooloop-Packages
|
||||||
Section: tooloop/addons
|
Section: tooloop/addons
|
||||||
Architecture: all
|
Architecture: all
|
||||||
Depends: onboard
|
Depends: onboard,
|
||||||
dbus-x11
|
dbus-x11,
|
||||||
|
libglib2.0-bin
|
||||||
Name: Virtual Keyboard
|
Name: Virtual Keyboard
|
||||||
Description: Onscreen Keyboard for touchscreens
|
Description: Onscreen Keyboard for touchscreens
|
||||||
It uses the onboard virtual keyboard. If you have trouble with your keyboard
|
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
|
switching language after tapping a key, find the line in /home/tooloop/.config/openbox
|
||||||
|
Thumbnail: virtual-keyboard-thumbnail.jpg
|
||||||
|
|
||||||
|
|||||||
@@ -1,10 +1,11 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
set -e
|
set -e
|
||||||
cat <<EOT >>
|
cat <<EOT >> /home/tooloop/.config/openbox/autostart
|
||||||
|
|
||||||
# Virtual Keyboard
|
# Virtual Keyboard
|
||||||
# set keyboard layout"
|
# set keyboard layout"
|
||||||
# https://answers.launchpad.net/onboard/+question/235265
|
# https://answers.launchpad.net/onboard/+question/235265
|
||||||
|
/home/tooloop/.config/onboard-config.sh &
|
||||||
onboard &
|
onboard &
|
||||||
EOT
|
EOT
|
||||||
|
|
||||||
|
|||||||
Executable
+12
@@ -0,0 +1,12 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
set -e
|
||||||
|
|
||||||
|
# Kill running instance
|
||||||
|
killall onboard &
|
||||||
|
|
||||||
|
# rmeove lines from autostart
|
||||||
|
sed -i '/onboard/d' /home/tooloop/.config/openbox/autostart
|
||||||
|
sed -i '/Keyboard/d' /home/tooloop/.config/openbox/autostart
|
||||||
|
sed -i '/keyboard/d' /home/tooloop/.config/openbox/autostart
|
||||||
|
|
||||||
|
exit 0
|
||||||
Reference in New Issue
Block a user