Keyboard layout corresponding to set Region

Yes it is planned but with no ETA yet. Meanwhile, you will have to do some work with the commandline.

Details regarding how to access the command line interface can be found here on our Wiki: Accessing the command line - General - OSMC

You will have type the following commands:

sudo apt-get update
sudo apt-get install console-data
sudo loadkeys de-latin1

Your keyboard should now be working correctly.

To load the QWERTZ layout when vero starts you have to put a command into a file called rc.local. Start by typing

sudo nano /etc/rc.local

You will now be editing the file. You should see this on your screen:

#!/bin/sh -e
#
# rc.local
#
# This script is executed at the end of each multiuser runlevel.
# Make sure that the script will "exit 0" on success or any other
# value on error.
#
# In order to enable or disable this script just change the execution
# bits.
#
# By default this script does nothing.


exit 0

Use the cursor keys to go to the line just above where it says exit 0 and enter this line:

loadkeys de-latin1

Type ctrl-X and then Y to save your changes.

3 Likes