mirror of
https://github.com/awesomeWM/awesome
synced 2024-11-17 07:47:41 +01:00
c148b378cf
Signed-off-by: Julien Danjou <julien@danjou.info>
18 lines
453 B
Bash
Executable file
18 lines
453 B
Bash
Executable file
#!/bin/sh
|
|
top_srcdir="${1-.}"
|
|
echo "/* This file is autogenerated by" `basename $0` "*/"
|
|
echo
|
|
echo "const name_func_link_t LayoutList[] ="
|
|
echo "{"
|
|
for file in ${top_srcdir}/layouts/*.h
|
|
do
|
|
echo " /* $file */"
|
|
grep '^layout_t layout_' $file | cut -d' ' -f2 | cut -d\; -f1 | while read layout
|
|
do
|
|
shortname=`echo $layout | cut -d _ -f2-`
|
|
echo " {\"$shortname\", $layout},"
|
|
done
|
|
done
|
|
|
|
echo " {NULL, NULL}"
|
|
echo "};"
|