use config.rasi file if present

This commit is contained in:
Rasmus Steinke 2017-09-09 12:04:09 +02:00
parent 9b0a430fd4
commit 3f3e4c691f
1 changed files with 10 additions and 5 deletions

View File

@ -167,12 +167,17 @@ function set_theme()
then
mkdir -p ${CDIR}
fi
if [ -f "${CDIR}/config" ]
if [ -f "${CDIR}/config.rasi" ]
then
${SED} -i "/rofi\.theme: .*\.rasi$/d" "${CDIR}/config"
fi
echo "rofi.theme: ${1}" >> "${CDIR}/config"
${SED} -i "/@import.*/d" "${CDIR}/config.rasi"
echo "@import \"${1}\"" >> "${CDIR}/config.rasi"
else
if [ -f "${CDIR}/config" ]
then
${SED} -i "/rofi\.theme: .*\.rasi$/d" "${CDIR}/config"
fi
echo "rofi.theme: ${1}" >> "${CDIR}/config"
fi
}
############################################################################################################