2019-05-23 15:47:02 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
set -e
|
2019-05-24 15:48:50 +00:00
|
|
|
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
|
2022-05-10 14:11:15 +02:00
|
|
|
/home/tooloop/.config/onboard/onboard-config.sh &
|
2019-05-23 15:47:02 +02:00
|
|
|
onboard &
|
|
|
|
|
EOT
|
|
|
|
|
|
2019-05-24 15:48:50 +00:00
|
|
|
exit 0
|