mirror of
https://github.com/awesomeWM/awesome
synced 2024-11-17 07:47:41 +01:00
5db6c04c42
Signed-off-by: Uli Schlachter <psychon@znc.in>
11 lines
221 B
Bash
Executable file
11 lines
221 B
Bash
Executable file
#!/bin/sh
|
|
|
|
echo "/* This file is autogenerated by $0 - do not edit */"
|
|
echo
|
|
|
|
while read atom
|
|
do
|
|
echo extern xcb_atom_t $atom\;
|
|
done < $1
|
|
|
|
# vim: filetype=sh:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80
|