all repos — tint2 @ c1e5a7b172a8a76dc89d57d178a1fb5df078a7ba

fork of the tint2 desktop panel for my custom setup - only minimized windows across all desktops for the taskbar

Set indentation to use spaces instead of tabs, add auto indentation script
o9000 mrovi9000@gmail.com
commit

c1e5a7b172a8a76dc89d57d178a1fb5df078a7ba

parent

8f67884119b00976cd4c714f685e731eb482043c

2 files changed, 4 insertions(+), 1 deletions(-)

jump to
M .clang-format.clang-format

@@ -63,4 +63,4 @@ SpacesInParentheses: false

SpacesInSquareBrackets: false Standard: Cpp11 TabWidth: 4 -UseTab: ForIndentation +UseTab: Never
A format-code.sh

@@ -0,0 +1,3 @@

+#!/bin/bash + +find . '(' -name '*.h' -o -name '*.c' ')' -exec clang-format-3.7 -style=file -i '{}' \;