Files
Tooloop-Packages/virtual-keyboard/package/DEBIAN/postinst
T

13 lines
236 B
Bash
Raw Normal View History

2019-05-23 15:47:02 +02:00
#!/bin/bash
set -e
cat <<EOT >> /home/tooloop/.config/openbox/autostart
2019-05-23 15:47:02 +02:00
# Virtual Keyboard
# set keyboard layout"
# https://answers.launchpad.net/onboard/+question/235265
/home/tooloop/.config/onboard-config.sh &
2019-05-23 15:47:02 +02:00
onboard &
EOT
exit 0