-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Any ideas how to make this work on Arch? #12
Comments
I have no experience with this setup. When you make it work, please post the solution here or update the documentation. |
I'm using x11 arch with dwm and it works just fine. Make sure you have all the packages you need. Here's an example of how I use it #!/bin/bash
keyboard=$(echo -e "CODER\nUS\nCZ" | dmenu)
case "$keyboard" in
"US")
setxkbmap -layout us
;;
"CZ")
setxkbmap -layout cz -variant qwerty
;;
"CODER")
setxkbmap -layout cz -variant coder
;;
esac |
To make it system wide on xorg configuration level: $ cat /etc/X11/xorg.conf.d/10-keyboard.conf
Section "InputClass"
Identifier "evdev keyboard catchall"
MatchIsKeyboard "on"
MatchDevicePath "/dev/input/event*"
Driver "evdev"
Option "XkbModel" "pc102"
Option "XkbLayout" "us,cz(coder)"
Option "XkbRules" "xorg"
Option "XkbOptions" "grp:caps_toggle,grp_led:caps"
Option "AutoRepeat" "150"
EndSection or
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I'm running Arch with Xorg and i3, been trying to make this work on this setup but no success so far.
The text was updated successfully, but these errors were encountered: