summaryrefslogtreecommitdiffstats
path: root/test/convert_old_theme_test.sh
blob: b7eb910656cc4b93d48d37c456d2a4cc899dacd9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/env bash

TOP_DIR=$1

xrdb -retain -load "${TOP_DIR}/doc/old-theme-convert-input.theme"
rofi -config "${TOP_DIR}/doc/old-theme-convert-input.theme" -dump-theme | grep -v "Rofi version" > temp.txt

if ! diff temp.txt "${TOP_DIR}/doc/old-theme-convert-output.rasi" >/dev/null
then
    echo "Convert default theme failed"
    diff temp.txt "${TOP_DIR}/doc/old-theme-convert-output.rasi"
    exit 1
fi

exit "${RETV}"