You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/sh
|
|
# Run this to regenerate xkbcommon-keysyms.h from the X11 headers
|
|
# defining the keysyms and update the name <-> keysym mapping.
|
|
export LC_CTYPE=C
|
|
scripts/makeheader > xkbcommon/xkbcommon-keysyms.h
|
|
scripts/makekeys xkbcommon/xkbcommon-keysyms.h > src/ks_tables.h
|