Set your keyboard language in KDE debug 4.3

I’ve seen some other people having this issue at the moment to “fix” do this :

  1. The solution is to use the command setxkbmap and a bash script in dom0 to set the correct keyboard language command : setxkbmap (letter of your country) ex setxkbmap de , setxkbmap nl

  2. Create a bash script to automatically run the commands at boot
    3. nano language.sh

  3. In the script put this

 #!/bin/bash 
setxkbmap (letter of your country)
  1. Open KDE “autostart” and add your script and give KDE the permissions to execute click on “Allow executing file as program” and reboot the system
  2. :white_check_mark: Each time you boot your vm and dom0 will use your real keyboard language
1 Like