# Depends on confuse
# Depends on alsa-lib

# Exit on error:
set -e

wget http://i3wm.org/i3status/i3status-2.7.tar.bz2
tar xf i3status-2.7.tar.bz2
cd i3status-2.7

make \
    LDFLAGS=-lm

make install

cd ..

cat > i3status.conf << EOF
general {
    output_format="i3bar"
    colors=true
    interval=60
}

order += "time"

time {
    format="%d.%m.%Y %H:%M"
}
EOF

echo 'You can now copy i3status.conf to ~/.i3status.conf'

exit 0
