Add AUTHORS

This commit is contained in:
Florian Bruhin 2014-04-22 07:18:19 +02:00
parent 27eab5dbaa
commit f279ca820a
3 changed files with 12 additions and 1 deletions

3
AUTHORS Normal file
View File

@ -0,0 +1,3 @@
Contributors, sorted by the number of commits in descending order:
Florian Bruhin

1
TODO
View File

@ -50,7 +50,6 @@ Minor features
add setup.py and PKGBUILD add setup.py and PKGBUILD
add README add README
add HACKING add HACKING
add AUTHORS
handle completion for aliases handle completion for aliases
keybind should have completion for commands/arguments keybind should have completion for commands/arguments
Hiding scrollbars Hiding scrollbars

9
generate_authors.sh Normal file
View File

@ -0,0 +1,9 @@
#!/bin/bash
# Inspired by herbstluftwm.
cat > AUTHORS <<EOF
Contributors, sorted by the number of commits in descending order:
$(git log --format="%aN" | sort | uniq -c | sort -nr | sed 's/^[ ]*[^ ]*[ ]*//')
EOF