czech-coder-xkb icon indicating copy to clipboard operation
czech-coder-xkb copied to clipboard

Any ideas how to make this work on Arch?

Open ghost opened this issue 3 years ago • 3 comments

I'm running Arch with Xorg and i3, been trying to make this work on this setup but no success so far.

ghost avatar Jul 28 '22 11:07 ghost

I have no experience with this setup. When you make it work, please post the solution here or update the documentation.

michalkahle avatar Jul 29 '22 08:07 michalkahle

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

o7raven avatar Sep 17 '23 13:09 o7raven