czech-coder-xkb
czech-coder-xkb copied to clipboard
Any ideas how to make this work on Arch?
I'm running Arch with Xorg and i3, been trying to make this work on this setup but no success so far.
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