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

TOP_DIR=$1

rofi -dump-xresources -config ${TOP_DIR}/doc/test_xr.txt > temp.txt

if ! diff temp.txt ${TOP_DIR}/doc/test_xr.txt > /dev/null
then
    echo "Dump xresources does not match."
    exit 1;
fi

exit ${RETV}