all repos — tint2 @ e4c5509061d1c0d11b6b45e90ed997f24a2b5fb4

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

get_version.sh (raw)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#!/bin/sh

MAJOR=0.12
DIRTY=""

git update-index -q --ignore-submodules --refresh
# Disallow unstaged changes in the working tree
if ! git diff-files --quiet --ignore-submodules --
then
    if [ "$1" = "--strict" ]
    then
        echo >&2 "Error: there are unstaged changes."
        git diff-files --name-status -r --ignore-submodules -- >&2
        exit 1
    else
        DIRTY="-dirty"
    fi
fi

# Disallow uncommitted changes in the index
if ! git diff-index --cached --quiet HEAD --ignore-submodules --
then
    if [ "$1" = "--strict" ]
    then
        echo >&2 "Error: there are uncommitted changes."
        git diff-index --cached --name-status -r --ignore-submodules HEAD -- >&2
        exit 1
    else
        DIRTY="-dirty"
    fi
fi

VERSION=$(git describe --exact-match 2>/dev/null || echo "$MAJOR-git$(git show -s --pretty=format:%cI.%h | tr -d ':' | tr -d '-' | tr '.' '-' | sed 's/T[0-9\+]*//g')")$DIRTY
VERSION=$(echo "$VERSION" | sed 's/^v//')

echo '#define VERSION_STRING "'$VERSION'"' > version.h
echo $VERSION