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 then
mkdir -p ${CDIR} mkdir -p ${CDIR}
fi fi
if [ -f "${CDIR}/config" ] if [ -f "${CDIR}/config.rasi" ]
then then
${SED} -i "/rofi\.theme: .*\.rasi$/d" "${CDIR}/config" ${SED} -i "/@import.*/d" "${CDIR}/config.rasi"
fi echo "@import \"${1}\"" >> "${CDIR}/config.rasi"
echo "rofi.theme: ${1}" >> "${CDIR}/config" else
if [ -f "${CDIR}/config" ]
then
${SED} -i "/rofi\.theme: .*\.rasi$/d" "${CDIR}/config"
fi
echo "rofi.theme: ${1}" >> "${CDIR}/config"
fi
} }
############################################################################################################ ############################################################################################################