mirror of
https://github.com/Tooloop/Tooloop-Packages.git
synced 2026-04-27 20:41:37 +02:00
13 lines
244 B
Bash
Executable File
13 lines
244 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
cat <<EOT >> /home/tooloop/.config/openbox/autostart
|
|
|
|
# Virtual Keyboard
|
|
# set keyboard layout"
|
|
# https://answers.launchpad.net/onboard/+question/235265
|
|
/home/tooloop/.config/onboard/onboard-config.sh &
|
|
onboard &
|
|
EOT
|
|
|
|
exit 0
|