prikhi / lightdm-mini-greeter

A Minimal, Configurable, Single-User GTK3 LightDM Greeter
GNU General Public License v3.0
541 stars 48 forks source link

Keyboard issue ? #56

Closed gigaturbo closed 4 years ago

gigaturbo commented 4 years ago

Hi !

I'm trying to use the mini-greeter but I can't log in : when I enter my password nothing happens. I'm using an azerty/french keyboard, so I was wondering if it can be the cause of my problem.

prikhi commented 4 years ago

Hi, have you reviewed the Configure section of the README? Specifically, you currently have to set the user field of the greeter's config and possibly the user-session in lightdm's configuration.

prikhi commented 4 years ago

To clarify, when you say "when I enter my password nothing happens", do you mean when you type your password in no characters appear in the input, or when you hit enter to try to log in with it nothing happens?

gigaturbo commented 4 years ago

Nothing happens when I hit enter. I can type my password but I can't see if I'm typing right because the characters are hidden.

gigaturbo commented 4 years ago

I recently reinstalled my computer so I tried to setup lightdm-mini-greeter again but I still have the keyboard problem. What I have done :

What happens :

What I tried :

gigaturbo commented 4 years ago

Solved by editing /etc/X11/xorg.conf.d/00-keymap.conf :

Section "InputClass"
  Identifier "system-keyboard"
  MatchIsKeyboard "on"
  Option  "XkbModel"    "pc105"
  Option  "XkbLayout"   "fr,us"
  Option  "XkbOptions"  "grp:caps_toggle,grp_led:caps"
EndSection
prikhi commented 4 years ago

Solved

Sweet, I had no idea how to test this without buying a keyboard lol. Would you be into making a PR adding a sub-section for this to the Configure section of the readme?