mirror of
https://github.com/Llewellynvdm/conky.git
synced 2025-02-13 17:38:45 +00:00
6 lines
136 B
Bash
6 lines
136 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
find . -iname "*.h" -o -iname "*.cc" -o -iname "*.hh" \
|
||
|
| xargs clang-format \
|
||
|
-style=file -i -fallback-style=google
|