mirror of
https://github.com/lbonn/rofi
synced 2024-11-15 16:38:00 +00:00
15 lines
271 B
Bash
15 lines
271 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
TOP_DIR=$1
|
||
|
|
||
|
rofi -no-config -dump-theme > temp.txt
|
||
|
|
||
|
if ! diff temp.txt ${TOP_DIR}/doc/default_theme.rasi > /dev/null
|
||
|
then
|
||
|
echo "Dump default theme does not match."
|
||
|
diff temp.txt ${TOP_DIR}/doc/default_theme.rasi
|
||
|
exit 1;
|
||
|
fi
|
||
|
|
||
|
exit ${RETV}
|