1
0
Fork 0
dotfiles/.local/share/xkb/build.sh

8 lines
270 B
Bash
Raw Normal View History

2023-07-14 17:59:32 +02:00
#!/bin/sh
for f in keymap/*; do
name="$(basename "$f")"
echo "--------------------------- Compiling $name ---------------------------"
xkbcomp -I. "$f" -xkb -o "compiled/${name}.xkb" -a -w4
# xkbcomp -I. "$f" -xkm -o "compiled/$(basename "$f").xkm"
done