mirror of
https://github.com/Llewellynvdm/conky.git
synced 2025-02-09 23:48:48 +00:00
* Reform source with clang-format. Rules applied with: $ find . -iname *.h -o -iname *.cc | xargs clang-format \ -style=file -i -fallback-style=google * Add clang-format and analyze to build. Based on the excellent work at: https://github.com/ttroy50/cmake-examples * Clean up CMake stuff on macOS. * Remove vim/emacs modelines. * Update copyright dates. * Build fixes. * Build fixes. * Build fixes. * Build fixes. * Build fixes. * Build fixes.
6 lines
136 B
Bash
Executable File
6 lines
136 B
Bash
Executable File
#!/bin/bash
|
|
|
|
find . -iname "*.h" -o -iname "*.cc" -o -iname "*.hh" \
|
|
| xargs clang-format \
|
|
-style=file -i -fallback-style=google
|