mirror of
https://github.com/m1k1o/neko.git
synced 2024-07-24 14:40:50 +12:00
7 lines
279 B
Bash
7 lines
279 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
wget https://cgit.freedesktop.org/xorg/proto/x11proto/plain/keysymdef.h
|
||
|
sed -i -E 's/\#define (XK_[a-zA-Z_0-9]+\s+)(0x[0-9a-f]+)/const \1 = \2/g' keysymdef.h
|
||
|
sed -i -E 's/^\#/\/\//g' keysymdef.h
|
||
|
echo "package xorg" | cat - keysymdef.h > keysymdef.go && rm keysymdef.h
|