Advertisement
Guest User

Untitled

a guest
Aug 30th, 2016
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.95 KB | None | 0 0
  1. $ cat /etc/default/keyboard
  2. # If you change any of the following variables and HAL and X are
  3. # configured to use this file, then the changes will become visible to
  4. # X only if HAL is restarted. In Debian you need to run
  5. # /etc/init.d/hal restart
  6.  
  7. # The following variables describe your keyboard and can have the same
  8. # values as the XkbModel, XkbLayout, XkbVariant and XkbOptions options
  9. # in /etc/X11/xorg.conf.
  10.  
  11. XKBMODEL="pc105"
  12. XKBLAYOUT="de"
  13. XKBVARIANT="nodeadkeys"
  14. XKBOPTIONS=""
  15.  
  16. # If you don't want to use the XKB layout on the console, you can
  17. # specify an alternative keymap. Make sure it will be accessible
  18. # before /usr is mounted.
  19. # KMAP=/etc/console-setup/defkeymap.kmap.gz
  20. BACKSPACE="guess"
  21.  
  22. $ setxkbmap -print -verbose 10 | grep layout
  23. layout: us
  24.  
  25. Section "InputClass"
  26. Identifier "evdev keyboard catchall"
  27. MatchIsKeyboard "on"
  28. MatchDevicePath "/dev/input/event*"
  29. Option "XkbLayout" "de"
  30. Driver "evdev"
  31. EndSection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement